35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
services:
|
|
laconicd:
|
|
restart: no
|
|
image: cerc/laconicd:local
|
|
command: ["/bin/sh", "-c", "/opt/run-laconicd.sh"]
|
|
volumes:
|
|
# The cosmos-sdk node's database directory:
|
|
- laconicd-data:/root/.laconicd/data
|
|
- laconicd-config:/root/.laconicd/config
|
|
- laconicd-keyring:/root/.laconicd/keyring-test
|
|
# TODO: look at folding these scripts into the container
|
|
- ../config/mainnet-laconicd/scripts/run-laconicd.sh:/opt/run-laconicd.sh
|
|
- ../config/mainnet-laconicd/scripts/export-mykey.sh:/docker-entrypoint-scripts.d/export-mykey.sh
|
|
- ../config/mainnet-laconicd/scripts/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/mainnet-laconicd/registry-cli-config-template.yml:/registry-cli-config-template.yml
|
|
|
|
volumes:
|
|
laconicd-data:
|
|
laconicd-config:
|
|
laconicd-keyring:
|