Disable health-check until a safe heartbeat endpoint is available

pull/77/head
Stefano Ortolani 2024-06-14 13:52:57 +01:00
parent 8aaec5d836
commit b6aaed52c7
1 changed files with 8 additions and 7 deletions

View File

@ -62,13 +62,14 @@ services:
condition: service_healthy
db:
condition: service_healthy
healthcheck:
test: curl -ks https://localhost/users/login > /dev/null || exit 1
interval: 2s
timeout: 1s
retries: 3
start_period: 30s
start_interval: 30s
# this is now disabled until we have a heartbeat endpoint with no side effects
# healthcheck:
# test: curl -ks https://localhost/users/login > /dev/null || exit 1
# interval: 2s
# timeout: 1s
# retries: 3
# start_period: 30s
# start_interval: 30s
ports:
- "80:80"
- "443:443"