28 lines
738 B
YAML
28 lines
738 B
YAML
|
services:
|
||
|
laconicd:
|
||
|
restart: unless-stopped
|
||
|
image: cerc/laconic2d:local
|
||
|
command: ["sh", "/docker-entrypoint-scripts.d/create-fixturenet.sh"]
|
||
|
environment:
|
||
|
TEST_AUCTION_ENABLED: ${TEST_AUCTION_ENABLED:-false}
|
||
|
TEST_REGISTRY_EXPIRY: ${TEST_REGISTRY_EXPIRY:-false}
|
||
|
volumes:
|
||
|
- laconicd-data:/root/.laconicd
|
||
|
- ../config/fixturenet-laconicd/scripts/create-fixturenet.sh:/docker-entrypoint-scripts.d/create-fixturenet.sh
|
||
|
ports:
|
||
|
- "6060"
|
||
|
- "26657"
|
||
|
- "26656"
|
||
|
- "9473"
|
||
|
- "9090"
|
||
|
- "1317"
|
||
|
healthcheck:
|
||
|
test: ["CMD", "nc", "-vz", "127.0.0.1:26657"]
|
||
|
interval: 30s
|
||
|
timeout: 10s
|
||
|
retries: 10
|
||
|
start_period: 10s
|
||
|
|
||
|
volumes:
|
||
|
laconicd-data:
|