Nabarun
a33445aa4d
Part of https://www.notion.so/Create-laconic-registry-SDK-d3a636d4aba44f7cbba3bd99b7146811 - Use user key as transaction private key in record publish cmd Co-authored-by: neeraj <neeraj.rtly@gmail.com> Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Reviewed-on: cerc-io/laconic-registry-cli#56 Co-authored-by: Nabarun <nabarun@deepstacksoft.com> Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
28 lines
713 B
YAML
28 lines
713 B
YAML
services:
|
|
laconic2d:
|
|
restart: unless-stopped
|
|
image: cerc/laconic2d:local
|
|
command: ["sh", "/docker-entrypoint-scripts.d/create-fixturenet.sh"]
|
|
environment:
|
|
- TEST_AUCTION_ENABLED
|
|
- TEST_REGISTRY_EXPIRY
|
|
- LOGLEVEL
|
|
volumes:
|
|
- ./laconic2d/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:
|
|
- "9473:9473"
|
|
- "1317:1317"
|
|
- "26657:26657"
|
|
|
|
cli-test-runner:
|
|
image: cerc/laconic-registry-cli:local
|
|
depends_on:
|
|
laconic2d:
|
|
condition: service_healthy
|
|
command: tail -F /dev/null
|