Files
hytale-f2p/local-dev/docker-compose.yml
sanasol 66493d35ca Fix community link order: TG Group > TG Channel > Chat
Consistent order across all files.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-25 01:11:17 +01:00

44 lines
1.1 KiB
YAML

services:
# Redis/Kvrocks for session storage
kvrocks:
image: apache/kvrocks:latest
command: --bind 0.0.0.0 --dir /data
ports:
- "6666:6666"
volumes:
- ./data/kvrocks:/data
# Use the real hytale-auth-server with debug wrapper
auth-server:
build:
context: ../../hytale-auth-server
dockerfile: ../Hytale-F2P/local-dev/Dockerfile.debug
ports:
- "3000:3000"
- "3443:3443"
environment:
- PORT=3000
- HTTPS_PORT=3443
- DOMAIN=localhost:3443
- USE_TLS=false
- DATA_DIR=/app/data
- REDIS_URL=redis://kvrocks:6666
- ADMIN_PASSWORD=localdev
- DEBUG_MODE=true
- KEY_ID=2025-10-01-sanasol
volumes:
- ./data/auth:/app/data
# Mount debug wrapper as entry point
- ./debug-wrapper.js:/app/src/debug-wrapper.js:ro
depends_on:
- kvrocks
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:3000/health"]
interval: 5s
timeout: 3s
retries: 10
networks:
default:
name: hytale-local-dev