mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
syntax fix
This commit is contained in:
parent
dc95d4d800
commit
a094a0bd66
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue