Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions AI_AGENT_DISCLOSURE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
This contribution was prepared by an AI agent acting on a human's behalf.
The human submitter may not have independently reviewed or tested the change.

2026-09-03
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,18 @@ services:
- "5000:5000"
volumes:
- .:/code
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5000"]
interval: 30s
redis:
image: redis
```

The `healthcheck` tells Compose how to determine whether a service is healthy. In
this example, Compose runs `curl` inside the `web` container every 30 seconds
to check port 5000 and considers the service healthy when the HTTP request
succeeds. The image built for `web` must include `curl`.

Contributing
------------

Expand Down