-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yml
103 lines (96 loc) · 1.76 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.8'
services:
postgres:
hostname: postgres
image: library/postgres:12-alpine
container_name: postgres_app_eye
networks:
internal:
volumes:
- ./postgres_data:/var/lib/postgresql/data
env_file:
- ./.env
backend:
container_name: backend_app_eye
networks:
default:
internal:
expose:
- "8000"
build:
context: ./
dockerfile: ./Dockerfile
entrypoint: /app/entrypoint.sh
depends_on:
- postgres
ports:
- "8000:8000"
volumes:
- ./:/app
env_file:
- ./.env
links:
- celery
- rabbit
- postgres
- redis
celery:
build:
context: ./
dockerfile: ./Dockerfile
container_name: celery_eye
volumes:
- "./:/app"
networks:
default:
internal:
entrypoint: /app/entrypoint_celery.sh
env_file:
- ./.env
depends_on:
- redis
- postgres
links:
- postgres
- rabbit
- redis
celery_beat:
build:
context: ./
dockerfile: ./Dockerfile
volumes:
- "./:/app"
networks:
default:
internal:
container_name: celery_beat_eye
entrypoint: /app/entrypoint_beat_celery.sh
env_file:
- ./.env
depends_on:
- redis
- postgres
links:
- postgres
- rabbit
- redis
rabbit:
hostname: rabbit
image: rabbitmq:3-management
networks:
default:
internal:
environment:
- RABBITMQ_DEFAULT_USER=admin
- RABBITMQ_DEFAULT_PASS=mypass # Redis - result backend
redis:
container_name: redis_app_eye
networks:
default:
internal:
image: redis:alpine
hostname: redis
networks:
default:
internal:
internal: true