-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose-run.yaml
68 lines (62 loc) · 1.48 KB
/
docker-compose-run.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
version: '3'
services:
auth-center:
restart: always
container_name: auth-center
image: $IMAGE_REPO_URL/auth-center:${IMAGE_VERSION}
volumes:
- /app/logs:/app/logs
ports:
- 7100:7100
system-center:
restart: always
container_name: system-center
image: $IMAGE_REPO_URL/system-center:${IMAGE_VERSION}
volumes:
- /app/logs:/app/logs
ports:
- 7200:7200
gateway-center:
restart: always
container_name: gateway-center
image: $IMAGE_REPO_URL/gateway-center:${IMAGE_VERSION}
volumes:
- /app/logs:/app/logs
ports:
- 7000:7000
depends_on:
- gateway-admin-center
gateway-admin-center:
restart: always
container_name: gateway-admin-center
image: $IMAGE_REPO_URL/gateway-admin-center:${IMAGE_VERSION}
volumes:
- /app/logs:/app/logs
ports:
- 8000:8000
admin-ui:
restart: always
container_name: admin-ui
image: $IMAGE_REPO_URL/admin-ui:${IMAGE_VERSION}
volumes:
- /var/log/nginx:/var/log/nginx
ports:
- 80:80
depends_on:
- gateway-center
message-center:
restart: always
container_name: message-center
image: $IMAGE_REPO_URL/message-center:${IMAGE_VERSION}
volumes:
- /app/logs:/app/logs
ports:
- 9001:9001
infra-center:
restart: always
container_name: infra-center
image: $IMAGE_REPO_URL/infra-center:${IMAGE_VERSION}
volumes:
- /app/logs:/app/logs
ports:
- 9003:9003