Commit 90e93a35 authored by Jorge Moratinos's avatar Jorge Moratinos
Browse files

Setting default values

parent 0726eec6
Loading
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ help() {
  echo "       -m : Clean monitoring service"
  echo "       -s : Clean Robot Mock service"
  echo "       -a : Clean all services"
  echo "       -z : Clean images generated by docker-compose. Boolean. Default true"
  echo "       -z : Clean images generated by docker-compose. Boolean. Default false"
  echo "       -h : show this help"
  exit 1
}
@@ -23,8 +23,6 @@ fi
FILES=()
echo "${FILES[@]}"

REMOVE_IMAGES=false

# Read params
while getopts "cvrahmsz:" opt; do
  case $opt in
+1 −0
Original line number Diff line number Diff line
@@ -31,6 +31,7 @@ export DEPLOY=all
export LOG_LEVEL=DEBUG
export CACHED_INFO=""
export BUILD_DOCKER_IMAGES=true
export REMOVE_IMAGES=false

# Needed to avoid write permissions on bind volumes with prometheus and grafana
export DUID=$(id -u)