summaryrefslogtreecommitdiff
path: root/quickstart.sh
diff options
context:
space:
mode:
Diffstat (limited to 'quickstart.sh')
-rwxr-xr-xquickstart.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/quickstart.sh b/quickstart.sh
index 8f62182..8da22e0 100755
--- a/quickstart.sh
+++ b/quickstart.sh
@@ -30,5 +30,12 @@ if [ ! -f ${DOCKER_JWT_HTPASSWD_PATH}/.htpasswd ]; then
fi
# Launch the containers.
-docker-compose -f docker/docker-compose.yaml up -d
docker-compose -f auth-server-poc/docker-compose.yml up -d
+
+if [ "$1" = "dev" ]; then
+ echo "Using docker/docker-compose-dev.yaml"
+ docker-compose -f docker/docker-compose-dev.yaml build collector
+ docker-compose -f docker/docker-compose-dev.yaml up -d
+else
+ docker-compose -f docker/docker-compose.yaml up -d
+fi