Files
PinchChat/docker-compose.yml
shiyue a03e8db621
Some checks failed
CI / build (20) (push) Has been cancelled
CI / build (22) (push) Has been cancelled
CI / notify-failure (push) Has been cancelled
Docker / build-and-push (push) Has been cancelled
feat: support cross-origin WebSocket proxy for remote gateway
- Add nginx /gwproxy/ reverse proxy with correct Origin header
- Auto-detect cross-origin gateway URL in GatewayClient.connect()
- Detect path-based proxy deployment in LoginScreen getInitialUrl()
- Change nginx/Docker to listen on port 3000, use host network mode
2026-03-14 13:22:24 +08:00

13 lines
305 B
YAML

services:
pinchchat:
# image: ghcr.io/marlburrow/pinchchat:latest
build: .
network_mode: host
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO", "/dev/null", "http://localhost:3000/"]
interval: 30s
timeout: 3s
start_period: 5s
retries: 3