Update docker-compose.yml to use curl vice wget (#422)

The health check is failing with wget not included in the base image, using curl fixes this issue
This commit is contained in:
LukeSearle 2025-05-26 19:40:40 +03:00 committed by GitHub
parent c40fb3a1f2
commit 4cdaaa5d5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,6 +22,6 @@ services:
restart: always
stop_grace_period: 1m
healthcheck:
test: 'wget -O /dev/null localhost:3000/api/healthz || exit 1'
test: 'curl -o /dev/null localhost:3000/api/healthz || exit 1'
timeout: 5s
retries: 3