New: Intelligent Flashcards spaced-repetition decks for every topic, built to make things actually stick.
Your container's HEALTHCHECK keeps failing and docker ps shows (unhealthy), but the container is never restarted. What's going on?
HEALTHCHECK
docker ps
(unhealthy)
docker run --restart=on-failure will restart any container whose health check fails
docker run --restart=on-failure
Docker only marks the state; restarting unhealthy containers is the orchestrator's job
Exit code 1 from the probe is treated as a warning, not a failure
1