-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcompose.prod.yaml
More file actions
36 lines (33 loc) · 846 Bytes
/
compose.prod.yaml
File metadata and controls
36 lines (33 loc) · 846 Bytes
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
services:
datagsm-web:
build:
context: ./datagsm-web
dockerfile: prod.dockerfile
container_name: datagsm-web-prod
ports:
- "8080:8080"
restart: unless-stopped
datagsm-oauth-authorization:
build:
context: ./datagsm-oauth-authorization
dockerfile: prod.dockerfile
container_name: datagsm-oauth-authorization-prod
ports:
- "8081:8081"
restart: unless-stopped
datagsm-openapi:
build:
context: ./datagsm-openapi
dockerfile: prod.dockerfile
container_name: datagsm-openapi-prod
ports:
- "8082:8082"
restart: unless-stopped
datagsm-oauth-userinfo:
build:
context: ./datagsm-oauth-userinfo
dockerfile: prod.dockerfile
container_name: datagsm-oauth-userinfo-prod
ports:
- "8083:8083"
restart: unless-stopped