Skip to content
Merged
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
12 changes: 10 additions & 2 deletions templates/compose/twenty.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ services:
interval: 2s
timeout: 5s
retries: 10
start_period: 10s
start_period: 30s
depends_on:
postgres:
condition: service_healthy
Expand Down Expand Up @@ -102,7 +102,15 @@ services:
depends_on:
twenty:
condition: service_healthy

healthcheck:
test:
- CMD-SHELL
- "ps aux | grep 'dist/queue-worker/queue-worker' | grep -v grep || exit 1"
interval: 30s
timeout: 5s
retries: 3
start_period: 30s

postgres:
image: postgres:16-alpine
environment:
Expand Down