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:
|
volumes:
|
||||||
- /docker/linkwarden/data:/data/data
|
- /docker/linkwarden/data:/data/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["/usr/bin/curl", "--silent", "--fail", "http://localhost:${PORT-3000}/"]
|
test: ["CMD", "/usr/bin/curl", "--silent", "--fail", "http://localhost:${PORT-3000}/"]
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
- meilisearch
|
- meilisearch
|
||||||
|
|
Reference in a new issue