-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
59 lines (53 loc) · 1.09 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
services:
backend:
container_name: rql_backend
build: rql-backend/
image: rql:backend-1.1.0-SNAPSHOT
depends_on:
- db
networks:
- rqlnetwork
db:
container_name: rql_db
image: postgres:9.6
volumes:
- ./db/rql:/var/lib/postgresql/data
networks:
- rqlnetwork
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
business_db:
container_name: rql_business_db
image: postgres:9.6
volumes:
- ./db/business:/var/lib/postgresql/data
networks:
- rqlnetwork
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
frontend:
container_name: rql_frontend
build: rql-ui/
platform: linux/amd64
image: rql:frontend-1.1.0-SNAPSHOT
depends_on:
- backend
networks:
- rqlnetwork
web:
container_name: rql_proxy
image: nginx:1.25.4
depends_on:
- frontend
- backend
volumes:
- ./nginx-conf:/etc/nginx/conf.d
ports:
- "80:80"
networks:
- rqlnetwork
networks:
rqlnetwork:
name: rqlnetwork