-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
99 lines (91 loc) · 2.1 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
version: '2'
# Start all machines
services:
# Postgress database
dosei:
container_name: dosei
build: dosei
privileged: true
restart: always
ports:
- 5432:5432
volumes:
- gumi:/home/dosei
environment:
- POSTGRES_PASSWORD=gumi
- POSTGRES_USER=gumi
networks:
- gumi
healthcheck:
test: ["CMD-SHELL", "pg_isready -U gumi"]
interval: 5s
timeout: 5s
retries: 5
# Logging microservice
mochi:
container_name: mochi
build: mochi
ports:
- 7417:8080
networks:
- gumi
depends_on:
dosei:
condition: service_healthy
links:
- dosei
healthcheck:
test: ["CMD-SHELL", "curl --fail http://localhost:8080/health || exit 1"]
interval: 5s
timeout: 5s
retries: 5
# Web interface for mochi microservice
mochi-frontend:
container_name: mochi-frontend
build:
context: ./mochi/frontend
ports:
- 7424:8080
networks:
- gumi
# File provider microservice
hoo:
container_name: hoo
build: hoo
ports:
- 7418:8080
networks:
- gumi
depends_on:
mochi:
condition: service_healthy
links:
- mochi
# Tag bases entity manager microservice
qilin:
container_name: qilin
build:
context: ./qilin/backend
ports:
- 7419:8080
networks:
- gumi
depends_on:
mochi:
condition: service_healthy
links:
- mochi
# Web interface for qilin microservice
qilin-frontend:
container_name: qilin-frontend
build:
context: ./qilin/frontend
ports:
- 7420:8080
networks:
- gumi
volumes:
gumi:
networks:
gumi:
driver: bridge