use dc command instead of docker-compose directly

This commit is contained in:
Karol Wypchlo 2021-05-28 16:09:45 +02:00
parent 82589dcdab
commit d021617762
1 changed files with 24 additions and 0 deletions

24
dc Executable file
View File

@ -0,0 +1,24 @@
#!/bin/bash
if [ -f .env ]; then
export $(cat .env | sed 's/#.*//g' | xargs)
fi
for i in $(seq 1 ${#PORTAL_MODULES}); do
# accounts module - alias "a"
if [ ${PORTAL_MODULES:i-1:1} == "a" ]; then
COMPOSE_FILES+=" -f docker-compose.accounts.yml"
fi
# jaeger module - alias "j"
if [ ${PORTAL_MODULES:i-1:1} == "j" ]; then
COMPOSE_FILES+=" -f docker-compose.jaeger.yml"
fi
done
# override file if exists
if [ -f docker-compose.override.yml ]; then
COMPOSE_FILES+=" -f docker-compose.override.yml"
fi
docker-compose $COMPOSE_FILES $@