Prathamesh Musale
08a29c023c
Reviewed-on: deep-stack/laconic2d#21 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
34 lines
784 B
YAML
34 lines
784 B
YAML
services:
|
|
laconic2d:
|
|
restart: unless-stopped
|
|
image: cerc/laconic2d:local
|
|
entrypoint: ["sh", "/docker-entrypoint-scripts.d/create-fixturenet.sh"]
|
|
environment:
|
|
- TEST_AUCTION_ENABLED
|
|
- TEST_REGISTRY_EXPIRY
|
|
- LOGLEVEL
|
|
volumes:
|
|
- ../../scripts/init.sh:/docker-entrypoint-scripts.d/create-fixturenet.sh
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-v", "http://127.0.0.1:6060"]
|
|
interval: 1s
|
|
timeout: 5s
|
|
retries: 30
|
|
ports:
|
|
- "6060"
|
|
- "26657"
|
|
- "26656"
|
|
- "9473"
|
|
- "8545"
|
|
- "8546"
|
|
- "9090"
|
|
- "9091"
|
|
- "1317"
|
|
|
|
sdk-test-runner:
|
|
image: cerc/registry-sdk-tester:local
|
|
depends_on:
|
|
laconic2d:
|
|
condition: service_healthy
|
|
command: tail -F /dev/null
|