forked from bcgov/tfrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
116 lines (115 loc) · 3 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
104
105
106
107
108
109
110
111
112
113
114
115
116
version: "3"
services:
db:
platform: linux/amd64
image: postgres:14.2
container_name: tfrs_db
environment:
POSTGRES_DB: tfrs
POSTGRES_USER: tfrs
POSTGRES_PASSWORD: development_only
ports:
- 5432:5432
volumes:
- postgres_data:/var/lib/postgresql/data
django:
platform: linux/amd64
environment:
- DATABASE_NAME=tfrs
- DATABASE_USER=tfrs
- DATABASE_PASSWORD=development_only
- DATABASE_ENGINE=postgresql
- DATABASE_SERVICE_NAME=postgresql
- POSTGRESQL_SERVICE_HOST=db
- POSTGRESQL_SERVICE_PORT=5432
- RABBITMQ_VHOST=/tfrs
- RABBITMQ_USER=rabbitmq
- RABBITMQ_PASSWORD=rabbitmq
- RABBITMQ_HOST=rabbit
- RABBITMQ_PORT=5672
- DOCUMENTS_API_ENABLED=True
- SMTP_SERVER_HOST=smtplogger
- SMTP_SERVER_PORT=2500
- EMAIL_SENDING_ENABLED=True
- FUEL_CODES_API_ENABLED=True
- CREDIT_CALCULATION_API_ENABLED=True
- COMPLIANCE_REPORTING_API_ENABLED=True
env_file:
- minio.env
depends_on:
- db
build:
dockerfile: Dockerfile-django
context: ./backend
command: >
bash -c
"pip install -q -r requirements.txt &&
/wfi/wait-for-it.sh -t 14400 rabbit:5672 &&
/wfi/wait-for-it.sh -t 14400 db:5432 &&
/wfi/wait-for-it.sh -t 14400 minio:9000 &&
/wfi/wait-for-it.sh -t 14400 smtplogger:2500 &&
python3 manage.py makemigrations &&
python3 manage.py migrate &&
python3 manage.py createcachetable &&
python3 manage.py load_ops_data api/fixtures/development/dockerized.py &&
supervisord"
ports:
- 8000:8000
volumes:
- ./backend:/app
node:
platform: linux/amd64
build:
dockerfile: Dockerfile
context: ./frontend
command: >
bash -c
"npm install && npm run start"
depends_on:
- rabbit
ports:
- 3000:3000
environment:
- RABBITMQ_VHOST=/tfrs
- RABBITMQ_USER=rabbitmq
- RABBITMQ_PASSWORD=rabbitmq
- RABBITMQ_HOST=rabbit
- RABBITMQ_PORT=5672
volumes:
- ./frontend:/app
- node_modules:/app/node_modules
rabbit:
platform: linux/amd64
image: rabbitmq:3.7-management
hostname: "rabbit"
environment:
- RABBITMQ_DEFAULT_USER=rabbitmq
- RABBITMQ_DEFAULT_PASS=rabbitmq
- RABBITMQ_DEFAULT_VHOST=/tfrs
- RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS=-rabbit log_levels [{connection,error}]
ports:
- 15672:15672
- 5672:5672
minio:
platform: linux/amd64
image: minio/minio
volumes:
- minio_data:/export
environment:
MINIO_ROOT_USER: 296e92217fa3479aaf9cc9641fdb6e0a
MINIO_ROOT_PASSWORD: 778eecb24d7743b5a1b56bbf36a29d62
ports:
- 9000:9000
command: "server /export"
smtplogger:
platform: linux/amd64
build:
context: ./smtplogger
dockerfile: Dockerfile-smtplogger
ports:
- 2500:2500
volumes:
node_modules:
postgres_data:
minio_data: