File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ ADDITIONAL_COMPOSE_OPTS=""
20
20
if [ -n " ${CI-} " ]; then # Apply CI override when running on CI server
21
21
ADDITIONAL_COMPOSE_OPTS=" $DOCKER_COMPOSE -f docker-compose-ci.yml"
22
22
fi
23
- DOCKER_COMPOSE=" docker compose --ansi never -f docker-compose.yml $ADDITIONAL_COMPOSE_OPTS run "
23
+ DOCKER_COMPOSE=" docker compose --ansi never -f docker-compose.yml $ADDITIONAL_COMPOSE_OPTS "
24
24
25
25
# don't start these services unless explicitly started
26
26
EXCEPT_SERVICES_DEFAULT=() # array of string e.g. ("a" "b")
@@ -122,7 +122,7 @@ start() {
122
122
FLAGS+=" --remove-orphans"
123
123
124
124
COMMANDS_TO_RUN+=(" echo $msg " )
125
- COMMANDS_TO_RUN+=(" $DOCKER_COMPOSE up $FLAGS $SERVICES " )
125
+ COMMANDS_TO_RUN+=(" $DOCKER_COMPOSE run $FLAGS $SERVICES " )
126
126
127
127
if [ $WAIT == 1 ]; then
128
128
COMMANDS_TO_RUN+=(" wait" )
You can’t perform that action at this time.
0 commit comments