stack-orchestrator/app/data/compose/docker-compose-go-nitro.yml

43 lines
1.2 KiB
YAML

version: '3.7'
services:
go-nitro:
image: cerc/go-nitro:local
hostname: go-nitro
restart: on-failure
depends_on:
# Wait for Nitro contracts to be deployed
nitro-contracts:
condition: service_completed_successfully
environment:
CHAIN_URL: ${CHAIN_URL:-ws://fixturenet-eth-geth-1:8546}
MSG_PORT: ${MSG_PORT:-3005}
RPC_PORT: ${RPC_PORT:-4005}
WS_MSG_PORT: ${WS_MSG_PORT:-5005}
PK: ${PK}
CHAIN_PK: ${CHAIN_PK}
USE_DURABLE_STORE: ${USE_DURABLE_STORE:-true}
DURABLE_STORE_FOLDER: ${DURABLE_STORE_FOLDER:-/app/data/nitro-store}
CERC_NA_ADDRESS: ${CERC_NA_ADDRESS}
CERC_VPA_ADDRESS: ${CERC_VPA_ADDRESS}
CERC_CA_ADDRESS: ${CERC_CA_ADDRESS}
entrypoint: ["bash", "-c", "/app/run-nitro-node.sh"]
volumes:
- go_nitro_data:/app/data
- nitro_deployment:/app/deployment
- ../config/go-nitro/run-nitro-node.sh:/app/run-nitro-node.sh
healthcheck:
test: ["CMD", "nc", "-v", "localhost", "${MSG_PORT:-3005}"]
interval: 5s
timeout: 5s
retries: 5
start_period: 5s
ports:
- "3005"
- "4005"
- "5005"
volumes:
go_nitro_data:
nitro_deployment: