We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d98ffe commit b0d970bCopy full SHA for b0d970b
streamr-docker-dev/bin.sh
@@ -16,10 +16,11 @@ DRY_RUN=0
16
FOLLOW=0
17
WAIT=0
18
WAIT_TIMEOUT=500 # seconds
19
-DOCKER_COMPOSE="docker compose --ansi never -f docker-compose.yml run"
+ADDITIONAL_COMPOSE_OPTS=""
20
if [ -n "${CI-}" ]; then # Apply CI override when running on CI server
21
- DOCKER_COMPOSE="$DOCKER_COMPOSE -f docker-compose-ci.yml"
+ ADDITIONAL_COMPOSE_OPTS="$DOCKER_COMPOSE -f docker-compose-ci.yml"
22
fi
23
+DOCKER_COMPOSE="docker compose --ansi never -f docker-compose.yml $ADDITIONAL_COMPOSE_OPTS run"
24
25
# don't start these services unless explicitly started
26
EXCEPT_SERVICES_DEFAULT=() # array of string e.g. ("a" "b")
0 commit comments