Nabarun
aa2117e472
Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675) - Resolves cerc-io/testnet-laconicd-stack#4 (comment) Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Reviewed-on: #70 Co-authored-by: Nabarun <nabarun@deepstacksoft.com> Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
28 lines
714 B
YAML
28 lines
714 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_REGISTRY_EXPIRY
|
|
- LOGLEVEL
|
|
volumes:
|
|
- ./laconicd/scripts/init.sh:/docker-entrypoint-scripts.d/create-fixturenet.sh
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-v", "http://127.0.0.1", "6060"]
|
|
interval: 1s
|
|
timeout: 5s
|
|
retries: 30
|
|
ports:
|
|
- "9473:9473"
|
|
- "1317:1317"
|
|
- "26657:26657"
|
|
|
|
cli-test-runner:
|
|
image: cerc/laconic-registry-cli:local
|
|
depends_on:
|
|
laconicd:
|
|
condition: service_healthy
|
|
command: tail -F /dev/null
|