This repository has been archived by the owner on May 2, 2023. It is now read-only.
forked from bcgov/alcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
165 lines (149 loc) · 3.42 KB
/
docker-compose.yaml
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
version: '3.6'
services:
####################### API #######################
api:
restart: always
container_name: alcs_api
build:
context: services
dockerfile: Dockerfile
ports:
- 8080:8080
depends_on:
- db
- redis
- migrate
healthcheck:
test: [ "CMD", "curl", "localhost:8080/" ]
interval: 5s
timeout: 5s
retries: 5
##################### Frontend ####################
frontend:
container_name: alcs_frontend
restart: always
build:
context: alcs-frontend
ports:
- 8081:8081
depends_on:
- api
healthcheck:
test: [ "CMD", "curl", "localhost:8081/" ]
interval: 15s
timeout: 5s
retries: 5
start_period: 30s
environment:
- API_URL=http://localhost:8080
##################### Database ####################
db:
image: postgres:14.4-bullseye
restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=postgres
ports:
- '5432:5432'
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 10s
timeout: 5s
retries: 5
volumes:
- postgres:/var/lib/postgres
- ./docker/postgres-schemas.sql:/docker-entrypoint-initdb.d/postgres-schemas.sql
###################### Redis ######################
redis:
image: "redis:alpine"
command: redis-server --requirepass redis
ports:
- "6379:6379"
environment:
- REDIS_REPLICATION_MODE=master
################ Database Migrations ##############
migrate:
container_name: alcs_migration
restart: on-failure
build:
context: services
dockerfile: Dockerfile.migrate
depends_on:
db:
condition: service_healthy
links:
- db
################ S3 Storage ##############
minio:
image: minio/minio:latest
restart: always
command: "server --console-address :9001 --address :80 /data"
environment:
- MINIO_ROOT_USER=minio
- MINIO_ROOT_PASSWORD=miniopassword
- MINIO_SERVER_URL=http://localhost
volumes:
- s3:/data
ports:
- "80:80"
- "9001:9001"
################ Portal ############################
portal-api:
restart: always
container_name: alcs_portal_api
build:
context: services
dockerfile: Dockerfile
args:
- NEST_APP=portal
ports:
- 8082:8081
depends_on:
- db
- redis
- migrate
healthcheck:
test: [ "CMD", "curl", "localhost:8080/" ]
interval: 5s
timeout: 5s
retries: 5
##################### Frontend ####################
portal-frontend:
container_name: alcs_portal_frontend
restart: always
build:
context: portal-frontend
ports:
- 8083:8081
depends_on:
- api
healthcheck:
test: [ "CMD", "curl", "localhost:8081/" ]
interval: 15s
timeout: 5s
retries: 5
start_period: 30s
environment:
- API_URL=http://localhost:8082
################ Portal Migrations ##############
portal-migrate:
container_name: alcs_portal_migration
restart: on-failure
build:
context: services
dockerfile: Dockerfile.migrate
args:
- NEST_APP=portal
depends_on:
db:
condition: service_healthy
links:
- db
volumes:
postgres:
redis:
s3:
networks:
default:
driver: bridge