Part of https://www.notion.so/Create-stacks-for-mainnet-1f2a6b22d4728034be4be2c51decf94e - TMKMS config is for `softsign` backend provider Reviewed-on: #4 Co-authored-by: Nabarun <nabarun@deepstacksoft.com> Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
services:
|
|
laconicd:
|
|
restart: unless-stopped
|
|
image: cerc/laconicd:local
|
|
command: ["bash", "-c", "/opt/run-laconicd.sh"]
|
|
environment:
|
|
CERC_MONIKER: ${CERC_MONIKER}
|
|
CERC_CHAIN_ID: ${CERC_CHAIN_ID:-laconic-mainnet}
|
|
CERC_PEERS: ${CERC_PEERS}
|
|
MIN_GAS_PRICE: ${MIN_GAS_PRICE:-0.001}
|
|
CERC_LOGLEVEL: ${CERC_LOGLEVEL:-info}
|
|
TMKMS_ENABLED: ${TMKMS_ENABLED:-false}
|
|
volumes:
|
|
- laconicd-data:/root/.laconicd
|
|
- ../config/mainnet-laconicd/run-laconicd.sh:/opt/run-laconicd.sh
|
|
- ../config/mainnet-laconicd/setup-laconicd.sh:/scripts/setup-laconicd.sh
|
|
- ../config/mainnet-laconicd/create-validator.sh:/scripts/create-validator.sh
|
|
ports:
|
|
- "6060"
|
|
- "26659"
|
|
- "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:
|