Fix healthcheck command syntax in Docker Compose configuration

This commit is contained in:
Edgar P. Burkhart 2025-05-16 15:45:48 +02:00
parent dcc0057f6e
commit 48a3f519ec
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -19,7 +19,7 @@ services:
volumes:
- /docker/linkwarden/data:/data/data
healthcheck:
test: ["/usr/bin/curl", "--silent", "--fail", "http://localhost:${PORT-3000}/"]
test: ["CMD", "/usr/bin/curl", "--silent", "--fail", "http://localhost:${PORT-3000}/"]
depends_on:
- postgres
- meilisearch