Thomas E Lackey
1a37255c18
* Endpoint includes port * Make it restartable * Don't try to remove the mounted directory * Make copy of init.sh
31 lines
1.0 KiB
YAML
31 lines
1.0 KiB
YAML
services:
|
|
laconicd:
|
|
restart: unless-stopped
|
|
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
|
|
# 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
|
|
|
|
volumes:
|
|
laconicd-data:
|