2024-06-24 07:30:16 +00:00
|
|
|
services:
|
|
|
|
laconicd:
|
|
|
|
restart: unless-stopped
|
2024-07-23 12:26:14 +00:00
|
|
|
image: cerc/laconicd:local
|
2024-08-01 12:10:57 +00:00
|
|
|
command: ["bash", "/scripts/init.sh"]
|
2024-06-24 07:30:16 +00:00
|
|
|
environment:
|
|
|
|
TEST_AUCTION_ENABLED: ${TEST_AUCTION_ENABLED:-false}
|
|
|
|
TEST_REGISTRY_EXPIRY: ${TEST_REGISTRY_EXPIRY:-false}
|
2024-07-05 11:50:40 +00:00
|
|
|
ONBOARDING_ENABLED: ${ONBOARDING_ENABLED:-false}
|
2024-08-08 07:44:18 +00:00
|
|
|
STAKING_AMOUNT: ${STAKING_AMOUNT:-1000000000000000}
|
|
|
|
AUTHORITY_AUCTION_ENABLED: ${AUTHORITY_AUCTION_ENABLED}
|
|
|
|
AUTHORITY_AUCTION_COMMITS_DURATION: ${AUTHORITY_AUCTION_COMMITS_DURATION}
|
|
|
|
AUTHORITY_AUCTION_REVEALS_DURATION: ${AUTHORITY_AUCTION_REVEALS_DURATION}
|
|
|
|
AUTHORITY_GRACE_PERIOD: ${AUTHORITY_GRACE_PERIOD}
|
2024-08-01 12:10:57 +00:00
|
|
|
GENESIS_FILE: /var/tmp/genesis.json
|
2024-08-10 06:39:45 +00:00
|
|
|
MONIKER: ${MONIKER:-localtestnet}
|
2024-10-09 12:02:25 +00:00
|
|
|
CHAINID: ${CHAINID:-laconic_9000-1}
|
2024-10-28 04:22:03 +00:00
|
|
|
MIN_GAS_PRICE: ${MIN_GAS_PRICE:-0.001}
|
2024-06-24 07:30:16 +00:00
|
|
|
volumes:
|
|
|
|
- laconicd-data:/root/.laconicd
|
2024-07-05 11:50:40 +00:00
|
|
|
- genesis-config:/var/tmp
|
2024-06-24 07:30:16 +00:00
|
|
|
ports:
|
|
|
|
- "6060"
|
|
|
|
- "26657"
|
|
|
|
- "26656"
|
|
|
|
- "9473"
|
|
|
|
- "9090"
|
|
|
|
- "1317"
|
|
|
|
healthcheck:
|
2024-07-16 10:56:53 +00:00
|
|
|
test: ["CMD", "nc", "-vz", "127.0.0.1", "26657"]
|
2024-06-24 07:30:16 +00:00
|
|
|
interval: 30s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 10
|
|
|
|
start_period: 10s
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
laconicd-data:
|
2024-07-05 11:50:40 +00:00
|
|
|
genesis-config:
|