Commit 7bb2668f authored by James Kirk's avatar James Kirk
Browse files

fix: updating run-compose to match ci-scripts stage

2 merge requests!23Resolve "Release v0.1.0",!8Gitlab-ci
Pipeline #106871 failed with stages
in 48 seconds
......@@ -6,6 +6,7 @@ source .env
usage() {
echo "usage: ./run-compose.sh [<rebuild>]"
echo " rebuild - will force docker-compose to rebuild the images before spinning them up."
echo " tests - run the test suite rather than the application."
}
if [[ -z "${DATA_DIR}" ]]; then
......@@ -17,7 +18,7 @@ while [ -n "$1" ]; do
rebuild)
EXTRA_ARGS="--build"
;;
test)
tests)
docker-compose -f docker/docker-compose-test.yaml up --build
exit 0
;;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment