-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose_deploy.yml
More file actions
53 lines (44 loc) · 881 Bytes
/
Copy pathdocker-compose_deploy.yml
File metadata and controls
53 lines (44 loc) · 881 Bytes
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
version: '3'
services:
control-system:
image: meteofill_app/control_system:latest
depends_on:
- postgres
- rabbitmq
- web_app
- backend
env_file:
- .env
backend:
image: meteofill_app/backend:latest
env_file:
- .env
depends_on:
- postgres
- rabbitmq
web_app:
image: meteofill_app/web_app:latest
ports:
- "8050:8050"
depends_on:
- postgres
- rabbitmq
env_file:
- .env
postgres:
image: postgres:latest
ports:
- "5432:5432"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: mydb
rabbitmq:
# image: rabbitmq:latest
image: rabbitmq:3-management
ports:
- "5672:5672"
- "15672:15672"
environment:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest