2022-10-28 20:21:02 +00:00
|
|
|
services:
|
|
|
|
laconicd:
|
|
|
|
restart: unless-stopped
|
|
|
|
image: cerc/laconicd:local
|
2024-07-25 08:50:15 +00:00
|
|
|
command: ["bash", "/docker-entrypoint-scripts.d/create-fixturenet.sh"]
|
2024-04-04 07:16:46 +00:00
|
|
|
environment:
|
2024-07-25 08:50:15 +00:00
|
|
|
TEST_AUCTION_ENABLED: ${TEST_AUCTION_ENABLED:-false}
|
|
|
|
TEST_REGISTRY_EXPIRY: ${TEST_REGISTRY_EXPIRY:-false}
|
|
|
|
ONBOARDING_ENABLED: ${ONBOARDING_ENABLED:-false}
|
2022-10-28 20:21:02 +00:00
|
|
|
volumes:
|
2023-05-18 19:54:27 +00:00
|
|
|
# The cosmos-sdk node's database directory:
|
2023-11-22 17:31:30 +00:00
|
|
|
- laconicd-data:/root/.laconicd
|
2023-03-07 17:08:04 +00:00
|
|
|
# TODO: look at folding these scripts into the container
|
2022-10-28 20:21:02 +00:00
|
|
|
- ../config/fixturenet-laconicd/create-fixturenet.sh:/docker-entrypoint-scripts.d/create-fixturenet.sh
|
2023-03-07 17:08:04 +00:00
|
|
|
- ../config/fixturenet-laconicd/export-mykey.sh:/docker-entrypoint-scripts.d/export-mykey.sh
|
2023-04-17 02:14:15 +00:00
|
|
|
- ../config/fixturenet-laconicd/export-myaddress.sh:/docker-entrypoint-scripts.d/export-myaddress.sh
|
2022-10-28 20:21:02 +00:00
|
|
|
# TODO: determine which of the ports below is really needed
|
|
|
|
ports:
|
|
|
|
- "6060"
|
|
|
|
- "26657"
|
|
|
|
- "26656"
|
2023-09-04 18:14:05 +00:00
|
|
|
- "9473"
|
2022-10-28 20:21:02 +00:00
|
|
|
- "9090"
|
|
|
|
- "1317"
|
2024-07-25 08:50:15 +00:00
|
|
|
|
2023-03-05 01:45:57 +00:00
|
|
|
cli:
|
|
|
|
image: cerc/laconic-registry-cli:local
|
|
|
|
volumes:
|
|
|
|
- ../config/fixturenet-laconicd/registry-cli-config-template.yml:/registry-cli-config-template.yml
|
2024-04-04 07:16:46 +00:00
|
|
|
- ${BASE_DIR:-~/cerc}/laconic-registry-cli:/laconic-registry-cli
|
2023-06-27 22:58:41 +00:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
laconicd-data:
|