12345678910111213141516171819202122232425262728 |
- #!/bin/bash
- set -e
- source compose-utils.sh
- ADDITIONAL_COMPOSE_QUEUE_ARGS=$(additionalComposeQueueArgs) || exit $?
- ADDITIONAL_COMPOSE_ARGS=$(additionalComposeArgs) || exit $?
- ADDITIONAL_COMPOSE_MONITORING_ARGS=$(additionalComposeMonitoringArgs) || exit $?
- docker-compose -f docker-compose.yml $ADDITIONAL_COMPOSE_ARGS $ADDITIONAL_COMPOSE_QUEUE_ARGS $ADDITIONAL_COMPOSE_MONITORING_ARGS stop
|