31 lines
1.0 KiB
YAML
31 lines
1.0 KiB
YAML
services:
|
|
laconicd:
|
|
restart: no
|
|
image: cerc/laconicd:local
|
|
command: ["sh", "/docker-entrypoint-scripts.d/create-fixturenet.sh"]
|
|
volumes:
|
|
# The cosmos-sdk node's database directory:
|
|
- laconicd-data:/root/.laconicd/data
|
|
# TODO: look at folding these scripts into the container
|
|
- ../config/mainnet-laconicd/create-fixturenet.sh:/docker-entrypoint-scripts.d/create-fixturenet.sh
|
|
- ../config/mainnet-laconicd/export-mykey.sh:/docker-entrypoint-scripts.d/export-mykey.sh
|
|
- ../config/mainnet-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:9473"
|
|
- "8545"
|
|
- "8546"
|
|
- "9090"
|
|
- "9091"
|
|
- "1317"
|
|
cli:
|
|
image: cerc/laconic-registry-cli:local
|
|
volumes:
|
|
- ../config/mainnet-laconicd/registry-cli-config-template.yml:/registry-cli-config-template.yml
|
|
|
|
volumes:
|
|
laconicd-data:
|