See the best posts from any Bluesky account
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update docker-compose healthcheck to hit /health/ready

Replaces the naive wget to the landing page with the new AdonisJS
readiness probe, which verifies both SQLite connectivity and
ClickHouse reachability before the dependent workers start.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+1 -1
+1 -1
docker-compose.yml
··· 36 36 ports: 37 37 - "3333:3333" 38 38 healthcheck: 39 - test: ["CMD", "wget", "-qO-", "http://localhost:3333/"] 39 + test: ["CMD", "wget", "-qO-", "http://localhost:3333/health/ready"] 40 40 interval: 2s 41 41 timeout: 3s 42 42 retries: 30