Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions DEPLOYMENT_DOCKER.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,9 @@ Typical size: ~25-30 MB
Add health checks to your container:

```dockerfile
# Install curl for health checks (nginx:alpine doesn't include it by default)
RUN apk add --no-cache curl

HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD curl -f http://localhost/ || exit 1
```
Expand Down
Loading