-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (50 loc) · 1.49 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
version: "3"
services:
didcomm-v2-test-util:
build:
context: .
image: frostyfrog/didcommv2-testutil
environment:
#- TARGET=http://agent:3000
- CONTROLLER=http://agent:3001
volumes:
- ./src:/project/src:ro,z
entrypoint: "python /project/src/__main__.py"
depends_on:
agent:
condition: service_healthy
agent:
#image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-nightly
image: acapy-test-image
build:
context: .
dockerfile: Dockerfile.acapy
args:
acapy_url: https://github.com/Indicio-tech/aries-cloudagent-python@feat/didcommv2-proof-of-concept
ports:
- "3001:3001"
command: >
start
--label Alice
--inbound-transport http 0.0.0.0 3000
--outbound-transport http
--endpoint http://agent:3000
--admin 0.0.0.0 3001
--admin-insecure-mode
--genesis-url https://raw.githubusercontent.com/Indicio-tech/indicio-network/main/genesis_files/pool_transactions_testnet_genesis
--wallet-type askar
--wallet-name agent
--wallet-key insecure
--auto-provision
--log-level debug
--debug-webhooks
--experimental-didcomm-v2
healthcheck:
test: curl -s -o /dev/null -w '%{http_code}' "http://localhost:3001/status/live" | grep "200" > /dev/null
start_period: 30s
interval: 7s
timeout: 5s
retries: 5
# depends_on:
# tails:
# condition: service_started