Add COMPOSEFLAGS

This commit is contained in:
TNE 2022-07-23 05:48:52 +02:00 committed by GitHub
parent 0aeeaaef71
commit d5b6fa15a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

4
run
View File

@ -55,8 +55,8 @@ fi
if [ "$USE_TUNNELS" != "true" ]; then
docker-compose -f docker-compose.yml pull
docker-compose -f docker-compose.yml up -d
docker-compose -f docker-compose.yml up ${COMPOSEFLAGS:-"-d"}
else
docker-compose -f docker-compose-tunnels.yml pull
docker-compose -f docker-compose-tunnels.yml up -d
docker-compose -f docker-compose-tunnels.yml up ${COMPOSEFLAGS:-"-d"}
fi