31 lines
1015 B
YAML
31 lines
1015 B
YAML
services:
|
|
laconicd:
|
|
restart: no
|
|
image: cerc/laconicd:local
|
|
command: ["/bin/sh", "-c", "while :; do sleep 600; done"]
|
|
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:
|