2024-06-19 04:33:56 +00:00
|
|
|
services:
|
|
|
|
laconicd:
|
|
|
|
restart: unless-stopped
|
2024-07-23 12:55:38 +00:00
|
|
|
image: cerc/laconicd:local
|
2024-06-19 04:33:56 +00:00
|
|
|
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
|
2024-06-24 07:26:38 +00:00
|
|
|
- ../config/laconicd/run-laconicd.sh:/opt/run-laconicd.sh
|
2024-06-19 04:33:56 +00:00
|
|
|
ports:
|
|
|
|
- "6060"
|
|
|
|
- "26657"
|
|
|
|
- "26656"
|
|
|
|
- "9473"
|
|
|
|
- "9090"
|
|
|
|
- "1317"
|
|
|
|
healthcheck:
|
2024-07-16 11:12:14 +00:00
|
|
|
test: ["CMD", "nc", "-vz", "127.0.0.1", "26657"]
|
2024-06-19 04:33:56 +00:00
|
|
|
interval: 30s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 10
|
|
|
|
start_period: 10s
|
|
|
|
extra_hosts:
|
|
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
laconicd-data:
|