Unverified Commit 9061f5b8 authored by Dmitriy Safronov's avatar Dmitriy Safronov Committed by GitHub
Browse files

curl verbosity (#2)

parent 155e50fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ set -e

# Wait for the application to start before accepting ALB requests.
if [[ -z "${SKIP_HEALTHCHECK}" ]]; then
  curl --silent --fail --max-time 5 "http://${APP_HOST:-app}:${APP_PORT:-8080}${APP_HEALTHCHECK_PATH:-/health}" || exit 1
  curl --verbose --fail --max-time 5 "http://${APP_HOST:-app}:${APP_PORT:-8080}${APP_HEALTHCHECK_PATH:-/health}" || exit 1
fi

# run in foreground as pid 1