-
-
Notifications
You must be signed in to change notification settings - Fork 488
Closed
Description
Describe the bug
Starting from version 4.3, the Docker container for rallly fails to reach a healthy state. The health check consistently fails, preventing the container from correctly running.
To Reproduce
Steps to reproduce the behavior:
- Build and run the Docker image of rallly (v4.3 or later).
- Observe the health status using
docker psordocker inspect. - The container remains unhealthy.
Expected behavior
The container should pass the health check and reach a healthy state.
Cause
- The Dockerfile’s health check relies on the
PORTenvironment variable:Line 93 in 1cb38ba
HEALTHCHECK CMD curl --fail http://localhost:${PORT}/api/status || exit 1 - However, the
PORTvariable was removed in this commit: Dockerfile diff via 🔧 Update Dockerfile permissions #1871 - As a result, the health check URL becomes invalid, causing the container to remain unhealthy.
Metadata
Metadata
Assignees
Labels
No labels