[Chore] Add healthcheck and restart policy to docker-compose.yml#2149
Open
hiro-nikaitou wants to merge 1 commit into
Open
[Chore] Add healthcheck and restart policy to docker-compose.yml#2149hiro-nikaitou wants to merge 1 commit into
hiro-nikaitou wants to merge 1 commit into
Conversation
Add healthcheck and restart: unless-stopped to all services in docker-compose.yml so containers auto-recover on crash and Docker can detect service readiness. - ollama: add restart: unless-stopped (healthcheck already existed) - presidio-anonymizer: add healthcheck + restart: unless-stopped - presidio-analyzer: add healthcheck + restart: unless-stopped - presidio-image-redactor: add healthcheck + restart: unless-stopped Closes data-privacy-stack#2050 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Author
|
CI workflows require approval from a maintainer (standard for first-time contributors). Once approved, checks should pass since this change is limited to docker-compose.yml and does not affect any application logic. Ready for review when CI is green. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add healthcheck and
restart: unless-stoppedpolicy to all services indocker-compose.ymlso containers auto-recover on crash and Docker can detect service readiness at the compose level.Related Issue
Closes #2050
Changes
Type of Change
Checklist
Notes
curland a built-inHEALTHCHECKinstruction in their Dockerfiles. This PR makes the healthcheck explicit at the compose level for better visibility and configurability for operators.restart: unless-stoppedpolicy prevents containers from staying dead after unexpected crashes (e.g. OOM during NLP model load).