Nabarun
0e0ddaa5ef
Part of [Create a public laconicd testnet](https://www.notion.so/Create-a-public-laconicd-testnet-896a11bdd8094eff8f1b49c0be0ca3b8) - To be handled in an upcoming PR: - Add laconic-registry-cli and console app to the stack Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Reviewed-on: cerc-io/testnet-laconicd-stack#1 Co-authored-by: Nabarun <nabarun@deepstacksoft.com> Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
32 lines
792 B
YAML
32 lines
792 B
YAML
services:
|
|
laconicd:
|
|
restart: unless-stopped
|
|
image: cerc/laconic2d:local
|
|
command: ["bash", "-c", "/opt/run-laconicd.sh"]
|
|
environment:
|
|
CERC_MONIKER: ${CERC_MONIKER:-TestnetNode}
|
|
CERC_CHAIN_ID: ${CERC_CHAIN_ID:-laconic_9000-1}
|
|
CERC_PEERS: ${CERC_PEERS}
|
|
CERC_LOGLEVEL: ${CERC_LOGLEVEL:-info}
|
|
volumes:
|
|
- laconicd-data:/root/.laconicd
|
|
- ../config/laconicd/scripts/run-laconicd.sh:/opt/run-laconicd.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
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
volumes:
|
|
laconicd-data:
|