--
README.sh wartet auf /actuator/health, anstatt eine fixe Zeit
docker-compose up -d take-order
kafka-avro-console-consumer --bootstrap-server kafka:9092 --topic orders &
-sleep 10 # TODO: Warum ist /health nicht erreichbar?!?
+until [ `{ http 0:8091/actuator/health 2>/dev/null || echo '{"status":"DOWN"}'; } | jq -r .status` == "UP" ]; do echo "Waiting for take-order..."; sleep 1; done
http -v post 0:8091/orders Accept:*/* id=1 customerId=2 productId=234 quantity=5
http -v post 0:8091/orders Accept:*/* id=1 customerId=2 productId=234 quantity=
http -v post 0:8091/orders Accept:*/* id=1 customerId=2 productId=234 quantity=-5