Files
node/compose.yml
zeekayandHanzo Dev 51a304804c chore: migrate luxd HTTP routes /ext -> /v1
Drop the Avalanche-heritage /ext prefix; /v1 is the single canonical route
surface (one way, no backward compat). The node's baseURL is the source of
truth; clients, SDKs, CLI, indexer, maker, genesis, netrunner, and the
k8s/compose/gateway/explorer configs are updated to match.

Co-authored-by: Hanzo Dev <dev@hanzo.ai>
2026-07-01 11:40:13 -07:00

38 lines
864 B
YAML

services:
luxd:
container_name: luxd
image: ghcr.io/luxfi/node:latest
restart: unless-stopped
ports:
- "9630:9630"
- "9631:9631"
volumes:
- luxd-data:/root/.luxd
environment:
LUXD_NETWORK_ID: "3"
LUXD_HTTP_HOST: "0.0.0.0"
LUXD_HTTP_PORT: "9630"
LUXD_STAKING_PORT: "9631"
LUXD_SYBIL_PROTECTION_ENABLED: "false"
LUXD_STAKING_ENABLED: "false"
LUXD_CONSENSUS_SAMPLE_SIZE: "1"
LUXD_CONSENSUS_QUORUM_SIZE: "1"
LUXD_LOG_LEVEL: "info"
healthcheck:
test: ["CMD", "curl", "-sf", "http://localhost:9630/v1/health"]
interval: 30s
timeout: 10s
retries: 5
start_period: 60s
deploy:
resources:
limits:
cpus: "4"
memory: 8G
reservations:
cpus: "2"
memory: 4G
volumes:
luxd-data: