-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yaml
154 lines (142 loc) · 3.35 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
version: "3.6"
services:
####################### API #######################
api:
restart: always
container_name: alcs_api
build:
context: services
dockerfile: Dockerfile
ports:
- 8080:8080
depends_on:
clamav:
condition: service_healthy
db:
condition: service_healthy
redis:
condition: service_started
migrate:
condition: service_started
healthcheck:
test: ["CMD", "curl", "localhost:8080/"]
interval: 5s
timeout: 5s
retries: 5
##################### ALCS 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
##################### Portal 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:8083/"]
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
###################### Clam AV ######################
clamav:
image: clamav/clamav:stable_base
volumes:
# Socket
- clamsocket:/var/run/clamav/
- clamav:/var/lib/clamav
ports:
- "3310:3310"
################ 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"
##################### PGTAP #####################
pgtap:
image: hbpmip/pgtap:1.0.0-2
environment:
- DATABASE=postgres
- USER=postgres
- PASSWORD=postgres
command:
- cp /mnt/** /test
volumes:
- ./services/apps/alcs/test/pgtap:/test
volumes:
postgres:
redis:
s3:
clamav:
clamsocket:
networks:
default:
driver: bridge