-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdocker-compose.yml
70 lines (65 loc) · 1.33 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
version: '3.8'
services:
auth-server0:
build:
context: ./BE/01_AUTH-server
dockerfile : Dockerfile
image: auth-server:1.0.0
expose:
- 9000
ports:
- 9000:9991
container_name: auth-server0
issuer-server0:
build:
context: ./BE/02_ISSUER-server
dockerfile : Dockerfile
image: issuer-server:1.0.0
expose:
- 9100
ports:
- 9100:9992
container_name: issuer-server0
holder-server0:
build:
context: ./BE/03_HOLDER-server
dockerfile : Dockerfile
image: holder-server:1.0.0
expose:
- 9200
ports:
- 9200:9993
container_name: holder-server0
verifier-server0:
build:
context: ./BE/04_VERIFIER-server
dockerfile : Dockerfile
image: verifier-server:1.0.0
expose:
- 9300
ports:
- 9300:9994
container_name: verifier-server0
react-nginx-app:
stdin_open: true
build:
context: ./FE/client
dockerfile: Dockerfile
image: react-ngninx-app:1.0.0
expose:
- 3010
ports:
- 3010:3000
container_name: client-test2
environment:
- CHOKIDAR_USEPOLLING=true
nginx-load-balancer:
restart : always
build :
context : ./Proxy
dockerfile : Dockerfile
image: proxy:1.0.0
expose:
- 80
ports:
- 80:80