e5c637e716
* Disbale transfers in bank module in the generated genesis file * Use bash to run the fixturenet script * Trust local certs for fetching account holdings
31 lines
837 B
YAML
31 lines
837 B
YAML
services:
|
|
laconicd:
|
|
restart: unless-stopped
|
|
image: cerc/laconic2d:local
|
|
command: ["bash", "/docker-entrypoint-scripts.d/create-fixturenet.sh"]
|
|
environment:
|
|
TEST_AUCTION_ENABLED: ${TEST_AUCTION_ENABLED:-false}
|
|
TEST_REGISTRY_EXPIRY: ${TEST_REGISTRY_EXPIRY:-false}
|
|
ONBOARDING_ENABLED: ${ONBOARDING_ENABLED:-false}
|
|
volumes:
|
|
- laconicd-data:/root/.laconicd
|
|
- genesis-config:/var/tmp
|
|
- ../config/fixturenet-laconicd/create-fixturenet.sh:/docker-entrypoint-scripts.d/create-fixturenet.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
|
|
|
|
volumes:
|
|
laconicd-data:
|
|
genesis-config:
|