-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (29 loc) · 799 Bytes
/
docker-compose.yml
File metadata and controls
31 lines (29 loc) · 799 Bytes
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
version: '3.3'
services:
agent:
build: agent
container_name: agent
ports:
- '8080:8080'
- '8000:8000'
command: start -it http 0.0.0.0 8000 -ot http --admin 0.0.0.0 8080 --admin-insecure-mode --genesis-url http://dev.greenlight.bcovrin.vonx.io/genesis
postgres:
image: arm32v7/postgres
container_name: postgres
environment:
- POSTGRES_PASSWORD=mysecretpassword
ports:
- '5432:5432'
demo:
build: demo
container_name: demo
environment:
- LOG_LEVEL=debug
- DEFAULT_POSTGRES=true
- LEDGER_URL=http://dev.greenlight.bcovrin.vonx.io
- GENESIS_URL=http://dev.greenlight.bcovrin.vonx.io/genesis
ports:
- '8080:8080'
- '8000:8000'
- '8020:8020'
command: -m runners.faber --port 8020