2024-06-24 07:30:16 +00:00
|
|
|
services:
|
|
|
|
laconicd:
|
|
|
|
restart: unless-stopped
|
2024-07-23 12:26:14 +00:00
|
|
|
image: cerc/laconicd:local
|
2024-07-11 13:49:27 +00:00
|
|
|
command: ["bash", "/docker-entrypoint-scripts.d/create-fixturenet.sh"]
|
2024-06-24 07:30:16 +00:00
|
|
|
environment:
|
|
|
|
TEST_AUCTION_ENABLED: ${TEST_AUCTION_ENABLED:-false}
|
|
|
|
TEST_REGISTRY_EXPIRY: ${TEST_REGISTRY_EXPIRY:-false}
|
2024-07-05 11:50:40 +00:00
|
|
|
ONBOARDING_ENABLED: ${ONBOARDING_ENABLED:-false}
|
2024-06-24 07:30:16 +00:00
|
|
|
volumes:
|
|
|
|
- laconicd-data:/root/.laconicd
|
2024-07-05 11:50:40 +00:00
|
|
|
- genesis-config:/var/tmp
|
2024-06-25 06:43:22 +00:00
|
|
|
- ../config/fixturenet-laconicd/create-fixturenet.sh:/docker-entrypoint-scripts.d/create-fixturenet.sh
|
2024-06-24 07:30:16 +00:00
|
|
|
ports:
|
|
|
|
- "6060"
|
|
|
|
- "26657"
|
|
|
|
- "26656"
|
|
|
|
- "9473"
|
|
|
|
- "9090"
|
|
|
|
- "1317"
|
|
|
|
healthcheck:
|
2024-07-16 10:56:53 +00:00
|
|
|
test: ["CMD", "nc", "-vz", "127.0.0.1", "26657"]
|
2024-06-24 07:30:16 +00:00
|
|
|
interval: 30s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 10
|
|
|
|
start_period: 10s
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
laconicd-data:
|
2024-07-05 11:50:40 +00:00
|
|
|
genesis-config:
|