9499bb6b1d
* Add compose file for laconicd fixturenet * Add build script for laconicd container * Add fixturenet laconicd script * Add stack instructions for fixturenet stack * Update README instructions * Update build and config scripts * Update compose file * Update root README --------- Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
28 lines
738 B
YAML
28 lines
738 B
YAML
services:
|
|
laconicd:
|
|
restart: unless-stopped
|
|
image: cerc/laconic2d:local
|
|
command: ["sh", "/docker-entrypoint-scripts.d/create-fixturenet.sh"]
|
|
environment:
|
|
TEST_AUCTION_ENABLED: ${TEST_AUCTION_ENABLED:-false}
|
|
TEST_REGISTRY_EXPIRY: ${TEST_REGISTRY_EXPIRY:-false}
|
|
volumes:
|
|
- laconicd-data:/root/.laconicd
|
|
- ../config/fixturenet-laconicd/scripts/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:
|