tmkms-stack/stack-orchestrator/compose/docker-compose-tmkms.yml
shreerang 38a7f3cb1c Update dockerfile to not set any runtime user (#3)
Part of https://www.notion.so/Create-stacks-for-mainnet-1f2a6b22d4728034be4be2c51decf94e
- Have removed setting user in dockerfile to avoid file permission issues due to UID mismatch

Co-authored-by: Shreerang Kale <shreerangkale@gmail.com>
Reviewed-on: #3
Co-authored-by: shreerang <shreerang@noreply.git.vdb.to>
Co-committed-by: shreerang <shreerang@noreply.git.vdb.to>
2025-06-13 06:23:02 +00:00

19 lines
428 B
YAML

services:
tmkms:
restart: unless-stopped
image: cerc/tmkms:local
command: ["bash", "-c", "/opt/run.sh"]
environment:
CHAIN_ID: ${CHAIN_ID}
NODE_IP: ${NODE_IP}
NODE_PORT: ${NODE_PORT:-26659}
KEY_PREFIX: ${KEY_PREFIX}
volumes:
- tmkms-data:/root/tmkms
- ../config/tmkms/run.sh:/opt/run.sh
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
tmkms-data: