Skip to content

Commit

Permalink
docker container dependency condition updated (#2553)
Browse files Browse the repository at this point in the history
The health check of the cdash docker container has been removed in #2334
When using the docker compose files the cdash_worker will not start with
the error

`container for service "cdash" has no healthcheck configured`

The dependency is changed to `service_started` to fix this
  • Loading branch information
stefankaufmann authored Nov 7, 2024
1 parent 4d0f948 commit b26efc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/docker-compose.production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ services:
condition: any
depends_on:
cdash:
condition: service_healthy
condition: service_started
volumes:
- type: volume
source: storage
Expand Down

0 comments on commit b26efc3

Please sign in to comment.