Prathamesh Musale
105805cb9b
Some checks failed
Lint Checks / Run linter (push) Successful in 47s
Publish / Build and publish (push) Successful in 1m34s
Webapp Test / Run webapp test suite (push) Successful in 5m14s
Deploy Test / Run deploy test suite (push) Successful in 6m22s
Smoke Test / Run basic test suite (push) Successful in 5m32s
Fixturenet-Laconicd-Test / Run Laconicd fixturenet and Laconic CLI tests (push) Failing after 10m4s
Part of https://www.notion.so/Test-registry-cli-in-SO-fixturenet-laconicd-CI-ef1f497678264362931bd12643ba8a17 Co-authored-by: neeraj <neeraj.rtly@gmail.com> Reviewed-on: #791 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
services:
|
|
laconicd:
|
|
restart: unless-stopped
|
|
image: cerc/laconicd:local
|
|
command: ["sh", "/docker-entrypoint-scripts.d/create-fixturenet.sh"]
|
|
environment:
|
|
TEST_AUCTION_ENABLED: ${TEST_AUCTION_ENABLED}
|
|
TEST_REGISTRY_EXPIRY: ${TEST_REGISTRY_EXPIRY}
|
|
volumes:
|
|
# The cosmos-sdk node's database directory:
|
|
- laconicd-data:/root/.laconicd
|
|
# TODO: look at folding these scripts into the container
|
|
- ../config/fixturenet-laconicd/create-fixturenet.sh:/docker-entrypoint-scripts.d/create-fixturenet.sh
|
|
- ../config/fixturenet-laconicd/export-mykey.sh:/docker-entrypoint-scripts.d/export-mykey.sh
|
|
- ../config/fixturenet-laconicd/export-myaddress.sh:/docker-entrypoint-scripts.d/export-myaddress.sh
|
|
# TODO: determine which of the ports below is really needed
|
|
ports:
|
|
- "6060"
|
|
- "26657"
|
|
- "26656"
|
|
- "9473"
|
|
- "8545"
|
|
- "8546"
|
|
- "9090"
|
|
- "9091"
|
|
- "1317"
|
|
cli:
|
|
image: cerc/laconic-registry-cli:local
|
|
volumes:
|
|
- ../config/fixturenet-laconicd/registry-cli-config-template.yml:/registry-cli-config-template.yml
|
|
- ${BASE_DIR:-~/cerc}/laconic-registry-cli:/laconic-registry-cli
|
|
|
|
volumes:
|
|
laconicd-data:
|