-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
73 lines (68 loc) · 1.76 KB
/
docker-compose.yml
File metadata and controls
73 lines (68 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
version: "3.12"
services:
db:
image: postgres:latest
container_name: postgres
ports:
- 5432:5432
environment:
- POSTGRES_DB=main
- POSTGRES_USER=django
- POSTGRES_PASSWORD=django
rabbitmq:
image: "rabbitmq:alpine"
container_name: rabbitmq
healthcheck:
test: rabbitmq-diagnostics -q ping
interval: 30s
timeout: 30s
retries: 3
django:
build:
context: .
dockerfile: docker/production.Dockerfile
container_name: django
command: ./docker/web_entrypoint.sh
environment:
- DATABASE_URL=psql://django:django@db:5432/main
- CELERY_BROKER_URL=amqp://guest:guest@rabbitmq:5672//
volumes:
- .:/app
ports:
- "8000:8000"
depends_on:
- db
- rabbitmq
restart: on-failure
celery:
build:
context: .
dockerfile: docker/production.Dockerfile
# command: celery -A main.tasks worker -l info --without-gossip --without-mingle --without-heartbeat
container_name: worker
command: ./docker/celery_entrypoint.sh
environment:
- DATABASE_URL=psql://django:django@db:5432/main
- CELERY_BROKER_URL=amqp://guest:guest@rabbitmq:5672//
volumes:
- .:/app
depends_on:
- db
- rabbitmq
restart: on-failure
beats:
build:
context: .
dockerfile: docker/production.Dockerfile
# command: celery -A main.tasks beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler
container_name: beats
command: ./docker/beats_entrypoint.sh
environment:
- DATABASE_URL=psql://django:django@db:5432/main
- CELERY_BROKER_URL=amqp://guest:guest@rabbitmq:5672//
volumes:
- .:/app
depends_on:
- db
- rabbitmq
restart: on-failure