-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
103 lines (95 loc) · 2.07 KB
/
docker-compose.yml
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
version: "3.11"
services:
web:
restart: always
container_name: web_ecommerce
build:
context: .
command: python manage.py runserver 0.0.0.0:8000
volumes:
- .:/usr/src/app
ports:
- "8000:8000"
depends_on:
- redis
- pgdb
pgdb:
container_name: pgdb_ecommerce
image: postgres
restart: always
ports:
- 5432:5432
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: ecommerce
pgadmin:
container_name: pgadmin_ecommerce
image: dpage/pgadmin4
restart: always
ports:
- 5050:80
environment:
PGADMIN_DEFAULT_EMAIL: [email protected]
PGADMIN_DEFAULT_PASSWORD: admin
esearch:
container_name: esearch_ecommerce
image: elasticsearch:7.17.18
restart: always
ports:
- 9200:9200
- 9300:9300
environment:
discovery.type: single-node
xpack.security.enabled: false
redis:
container_name: redis_ecommerce
image: redis:alpine
restart: always
ports:
- 6379:6379
celery:
container_name: celery_ecommerce
restart: always
build:
context: .
dockerfile: Dockerfile
command: celery -A ecommerce worker -l info
volumes:
- .:/usr/src/app
environment:
- DEBUG=1
- CELEERY_BROKER_URL=redis://redis:6379/0
- CELERY_RESULT_BACKEND=redis://redis:6379/0
depends_on:
- redis
celery-beat:
container_name: celery_beat_ecommerce
restart: always
build:
context: .
dockerfile: Dockerfile
command: celery -A ecommerce beat -l info
volumes:
- .:/usr/src/app
depends_on:
- redis
- celery
flower:
container_name: flower_ecommerce
image: mher/flower
restart: always
environment:
- CELEERY_BROKER_URL=redis://redis:6379/0
- CELERY_RESULT_BACKEND=redis://redis:6379/0
- FLOWER_PORT=5555
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/usr/src/app
ports:
- 5555:5555
depends_on:
- redis
- celery