-
Notifications
You must be signed in to change notification settings - Fork 12
/
docker-compose.yaml
66 lines (62 loc) · 1.63 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
version: "3.9"
services:
keria:
container_name: idw-keria
restart: unless-stopped
build:
context: https://github.com/WebOfTrust/keria.git#c9d35f901e293f166d5abbd58cda249248555253
dockerfile: ./images/keria.dockerfile
environment:
- KERI_AGENT_CORS=true
volumes:
- keria-data:/usr/local/var/keri
- ./keria-oobi-config.json:/keria/scripts/keri/cf/backer-oobis.json
entrypoint: keria start --config-file backer-oobis --config-dir ./scripts
ports:
- 3901:3901
- 3902:3902
- 3903:3903
witness:
container_name: idw-witness
restart: unless-stopped
image: weboftrust/keri:1.1.6
environment:
- PYTHONUNBUFFERED=1
- PYTHONIOENCODING=UTF-8
entrypoint:
- kli
command:
- witness
- demo
ports:
- 5642:5642
- 5643:5643
- 5644:5644
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: