We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dee0ccf commit e0b4bd3Copy full SHA for e0b4bd3
docker-compose.yml
@@ -11,7 +11,7 @@ services:
11
volumes:
12
- postgres_data:/var/lib/postgresql/data
13
healthcheck:
14
- test: pg_isready
+ test: [CMD-SHELL, 'pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}']
15
start_period: 5s
16
interval: 30s
17
timeout: 5s
@@ -82,7 +82,7 @@ services:
82
dockerfile: docker/Dockerfile.worker
83
context: .
84
target: prod
85
- command: worker --events --queues 123-test_queue # Queue.slug
+ command: worker --events --queues 123-test_queue # Queue.slug must be created in advance!
86
87
- ./config.docker.yml:/app/config.yml
88
depends_on:
0 commit comments