diff options
Diffstat (limited to 'ci/startcompose.sh')
| -rwxr-xr-x | ci/startcompose.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ci/startcompose.sh b/ci/startcompose.sh new file mode 100755 index 0000000..90f360c --- /dev/null +++ b/ci/startcompose.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash + +if [[ -z "${PORTAL_USER}" ]]; then + printf "Error: No portal username set, set the PORTAL_USER env var\n" + exit 1 +fi + +if [[ -z "${PORTAL_PASS}" ]]; then + printf "Error: No portal username set, set the PORTAL_PASS env var\n" + exit 1 +fi + +SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) + +docker-compose --file ci/docker/docker-compose.yml --project-directory $SCRIPT_DIR/.. up --abort-on-container-exit |
