nabarun
e254bff201
Part of cerc-io/testnet-laconicd-stack#4 and [Create an external fixturenet-laconic2d stack](https://www.notion.so/Create-an-external-fixturenet-laconic2d-stack-3b33cc2317444f4da209c4472f4244ed) Co-authored-by: IshaVenikar <ishavenikar7@gmail.com> Reviewed-on: #3
31 lines
840 B
YAML
31 lines
840 B
YAML
services:
|
|
laconicd:
|
|
restart: unless-stopped
|
|
image: cerc/laconic2d:local
|
|
command: ["bash", "/docker-entrypoint-scripts.d/create-fixturenet.sh"]
|
|
environment:
|
|
TEST_AUCTION_ENABLED: ${TEST_AUCTION_ENABLED:-false}
|
|
TEST_REGISTRY_EXPIRY: ${TEST_REGISTRY_EXPIRY:-false}
|
|
ONBOARDING_ENABLED: ${ONBOARDING_ENABLED:-false}
|
|
volumes:
|
|
- laconicd-data:/root/.laconicd
|
|
- genesis-config:/var/tmp
|
|
- ../config/fixturenet-laconicd/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:
|
|
genesis-config:
|