mirror of
https://git.sanhost.net/sanasol/hytale-f2p
synced 2026-02-26 06:51:47 -03:00
Fix community link order: TG Group > TG Channel > Chat
Consistent order across all files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
43
local-dev/docker-compose.yml
Normal file
43
local-dev/docker-compose.yml
Normal file
@@ -0,0 +1,43 @@
|
||||
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
|
||||
Reference in New Issue
Block a user