-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdocker-compose.yaml
71 lines (67 loc) · 1.78 KB
/
docker-compose.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
69
70
71
version: "3.9"
services:
keria:
container_name: idw-keria
restart: unless-stopped
build:
context: https://github.com/cardano-foundation/keria.git#4a2f953810af668e7b54dc03125ad4eeccccc8dc
dockerfile: ./images/keria.dockerfile
environment:
- KERI_AGENT_CORS=true
volumes:
- keria-data:/usr/local/var/keri
- ./keria-config/config.json:/keria/scripts/keri/cf/backer-oobis.json
entrypoint: keria start --config-file backer-oobis --config-dir ./scripts --loglevel INFO
ports:
- 3901:3901
- 3902:3902
- 3903:3903
witnesses:
container_name: idw-witnesses
restart: unless-stopped
image: weboftrust/keri:1.1.26
environment:
- PYTHONUNBUFFERED=1
- PYTHONIOENCODING=UTF-8
entrypoint:
- kli
command:
- witness
- demo
volumes:
- ./keria-config/witnesses:/keripy/scripts/keri/cf/main
ports:
- 5642:5642
- 5643:5643
- 5644:5644
- 5645:5645
- 5646:5646
- 5647:5647
cred-issuance:
container_name: cred-issuance
build:
context: ./services/credential-server
dockerfile: Dockerfile
restart: unless-stopped
environment:
- OOBI_ENDPOINT=http://cred-issuance:3001
- KERIA_ENDPOINT=http://keria:3901
- KERIA_BOOT_ENDPOINT=http://keria:3903
ports:
- 3001:3001
volumes:
- issuer-server-data:/app/data
cred-issuance-ui:
container_name: cred-issuance-ui
build:
context: ./services/credential-server-ui
dockerfile: ./Dockerfile
restart: unless-stopped
environment:
- REACT_APP_CREDENTIAL_ISSUANCE_SERVER_URL=http://localhost
- REACT_APP_CREDENTIAL_ISSUANCE_SERVER_PORT=3001
ports:
- 3000:80
volumes:
keria-data:
issuer-server-data: