nabarun
fadebe363a
Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675) - Allow requests from any origin - Replace `laconic2` with `laconic` - Update `nitro-rpc-client` usage in genesis generation script Co-authored-by: IshaVenikar <ishavenikar7@gmail.com> Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Reviewed-on: cerc-io/fixturenet-laconicd-stack#5
31 lines
839 B
YAML
31 lines
839 B
YAML
services:
|
|
laconicd:
|
|
restart: unless-stopped
|
|
image: cerc/laconicd: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:
|