forked from GLEIF-IT/reg-poc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
87 lines (80 loc) · 1.57 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
version: '3.8'
networks:
reg:
services:
witnesses:
build:
context: ./images
dockerfile: witnesses.dockerfile
ports:
- 5632:5632
- 5633:5633
- 5634:5634
- 5642:5642
- 5643:5643
- 5644:5644
networks:
- reg
volumes:
- './data/keri:/usr/local/var/keri/'
vlei:
build:
context: ./images
dockerfile: vlei.dockerfile
ports:
- 7723:7723
networks:
- reg
keria:
build:
context: ./images
dockerfile: keria.dockerfile
ports:
- 3901:3901
- 3902:3902
- 3903:3903
depends_on:
- witnesses
networks:
- reg
volumes:
- './data/keri:/usr/local/var/keri/'
verifier:
build:
context: ./images
dockerfile: verifier.dockerfile
depends_on:
- witnesses
ports:
- 7676:7676
networks:
- reg
volumes:
- './data/keri:/usr/local/var/keri'
server:
build:
context: ./images
dockerfile: server.dockerfile
ports:
- 8000:8000
depends_on:
- verifier
environment:
- ENABLE_CORS=true
- VERIFIER_AUTHORIZATIONS=http://verifier:7676/authorizations/
- VERIFIER_PRESENTATIONS=http://verifier:7676/presentations/
- VERIFIER_REPORTS=http://verifier:7676/reports/
- VERIFIER_REQUESTS=http://verifier:7676/request/verify/
networks:
- reg
webapp:
build:
context: ./images
dockerfile: webapp.dockerfile
ports:
- 5173:5173
depends_on:
- keria
- server
networks:
- reg