-
Notifications
You must be signed in to change notification settings - Fork 32
/
docker-compose.yaml
51 lines (47 loc) · 1.44 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
x-healthcheck: &healthcheck
interval: 2s
timeout: 3s
retries: 5
start_period: 2s
x-python-env: &python-env
PYTHONUNBUFFERED: 1
PYTHONIOENCODING: UTF-8
services:
vlei-server:
image: gleif/vlei
environment:
<<: *python-env
command: vLEI-server -s ./schema/acdc -c ./samples/acdc/ -o ./samples/oobis/
healthcheck:
test: curl -f http://localhost:7723/oobi/EBfdlu8R27Fbx-ehrqwImnK-8Cm79sqbAQ4MmvEAYqao
<<: *healthcheck
ports:
- 7723:7723
keria:
image: ${KERIA_IMAGE:-weboftrust/keria}:${KERIA_IMAGE_TAG:-0.2.0-dev5}
environment:
KERI_AGENT_CORS: 1
<<: *python-env
volumes:
- ./config/keria.json:/keria/config/keri/cf/keria.json
command: --config-dir /keria/config --config-file keria --name agent
healthcheck:
test: wget --spider http://keria:3902/spec.yaml
<<: *healthcheck
ports:
- 3901:3901
- 3902:3902
- 3903:3903
witness-demo:
image: weboftrust/keri-witness-demo:1.1.0
environment:
<<: *python-env
healthcheck:
test: curl -f http://localhost:5642/oobi
<<: *healthcheck
volumes:
- ./config/witness-demo:/keripy/scripts/keri/cf/main
ports:
- 5642:5642
- 5643:5643
- 5644:5644