Fix healthcheck command syntax in Docker Compose configuration
This commit is contained in:
parent
dcc0057f6e
commit
48a3f519ec
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Reference in a new issue