Skip to content

Commit

Permalink
updated docker-compose.yaml with entrypoint override for keria
Browse files Browse the repository at this point in the history
Signed-off-by: 2byrds <[email protected]>
  • Loading branch information
2byrds committed Jun 22, 2024
1 parent 44d9078 commit d3def41
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,15 @@ services:
- 7723:7723

keria:
image: 2byrds/keria
image: 2byrds/keria:latest
environment:
- KERI_AGENT_CORS=1
- KERI_URL=http://keria:3902
- PYTHONUNBUFFERED=1
- PYTHONIOENCODING=UTF-8
volumes:
- ./config/keria.json:/keria/config/keri/cf/keria.json
entrypoint: keria
command:
- start
- --config-dir
- /keria/config
- --config-file
- keria
- --name
- agent
entrypoint: ["keria", "start", "--config-dir", "/keria/config", "--config-file", "keria", "--name", "agent"]
healthcheck:
test: ['CMD', 'wget', '--spider', 'http://keria:3902/spec.yaml']
interval: 2s
Expand Down

0 comments on commit d3def41

Please sign in to comment.