diff --git a/docker/production/start-api.sh b/docker/production/start-api.sh index f1bbc21b..b92ee6b7 100755 --- a/docker/production/start-api.sh +++ b/docker/production/start-api.sh @@ -11,7 +11,7 @@ while ping -c1 prepare_backend &>/dev/null; do sleep 1; done; cd /zeppelin/backend if [ -n "$DEBUG" ]; then echo "Starting API in debug mode" - exec npm run start-api-prod-debug + exec env NO_INSIGHT=true npm run start-api-prod-debug else echo "Starting API" exec npm run start-api-prod diff --git a/docker/production/start-bot.sh b/docker/production/start-bot.sh index 74fcf336..f8b8bacc 100644 --- a/docker/production/start-bot.sh +++ b/docker/production/start-bot.sh @@ -11,7 +11,7 @@ while ping -c1 prepare_backend &>/dev/null; do sleep 1; done; cd /zeppelin/backend if [ -n "$DEBUG" ]; then echo "Starting bot in debug mode" - exec npm run start-bot-prod-debug + exec env NO_INSIGHT=true npm run start-bot-prod-debug else echo "Starting bot" exec npm run start-bot-prod