do not report from dc when env file does not exist

This commit is contained in:
Karol Wypchlo 2022-08-16 10:36:54 +02:00
parent 36f37e9be8
commit 169ca25d67
No known key found for this signature in database
GPG Key ID: B515DE9EEBE241E1
1 changed files with 3 additions and 1 deletions

4
dc
View File

@ -11,7 +11,9 @@
cwd="$(dirname -- "$0";)";
# get portal modules configuration from .env file (if defined more than once, the last one is used)
PORTAL_MODULES=$(grep -e "^PORTAL_MODULES=" ${cwd}/.env | tail -1 | sed "s/PORTAL_MODULES=//")
if [[ -f "${cwd}/.env" ]]; then
PORTAL_MODULES=$(grep -e "^PORTAL_MODULES=" ${cwd}/.env | tail -1 | sed "s/PORTAL_MODULES=//")
fi
# include base docker compose file
COMPOSE_FILES="-f ${cwd}/docker-compose.yml"