1
0
Fork 0

syntax fix

This commit is contained in:
Christian Winther 2024-01-17 16:30:40 +00:00
parent dc95d4d800
commit a094a0bd66
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ services:
- "${DOCKER_PROXY_PORT_EXTERNAL_HTTP}:80"
- "${DOCKER_PROXY_PORT_EXTERNAL_HTTPS}:443"
healthcheck:
test: "curl --fail https://$[APP_DOMAIN}/api/service/health-check"
test: "curl --fail https://${APP_DOMAIN}/api/service/health-check"
interval: "${DOCKER_PROXY_HEALTHCHECK_INTERVAL:-10s}"
retries: 2
timeout: 5s
@ -98,7 +98,7 @@ services:
- db
- redis
healthcheck:
test: 'curl --header "Host: $[APP_DOMAIN}" --fail http://localhost/api/service/health-check'
test: 'curl --header "Host: ${APP_DOMAIN}" --fail http://localhost/api/service/health-check'
interval: "${DOCKER_WEB_HEALTHCHECK_INTERVAL:-10s}"
retries: 2
timeout: 5s