2026-04-17 15:45:54 +08:00
|
|
|
services:
|
2026-04-18 11:11:38 +08:00
|
|
|
pocketbase-uat:
|
|
|
|
|
image: ghcr.io/muchobien/pocketbase:0.22.4
|
|
|
|
|
container_name: gamegroup-pb-uat
|
|
|
|
|
ports:
|
|
|
|
|
- "8712:8090"
|
|
|
|
|
volumes:
|
|
|
|
|
- ./backend/pb_data_uat:/pb_data
|
|
|
|
|
- ./backend/pb_migrations:/pb_migrations
|
|
|
|
|
- ./backend/pb_hooks:/pb_hooks
|
|
|
|
|
environment:
|
|
|
|
|
- GO_ENV=production
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
healthcheck:
|
|
|
|
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8090/api/health"]
|
|
|
|
|
interval: 30s
|
|
|
|
|
timeout: 10s
|
|
|
|
|
retries: 3
|
|
|
|
|
start_period: 40s
|
|
|
|
|
networks:
|
|
|
|
|
- gamegroup-net
|
|
|
|
|
|
2026-04-21 16:12:18 +08:00
|
|
|
livekit-uat:
|
2026-04-19 22:36:01 +08:00
|
|
|
image: livekit/livekit-server:v1.10
|
2026-04-21 16:12:18 +08:00
|
|
|
container_name: gamegroup-livekit-uat
|
2026-04-19 21:06:21 +08:00
|
|
|
ports:
|
2026-04-21 16:12:18 +08:00
|
|
|
- "7890:7880"
|
|
|
|
|
- "7891:7881/udp"
|
|
|
|
|
- "7892:7882/udp"
|
2026-04-19 21:06:21 +08:00
|
|
|
environment:
|
2026-04-19 22:29:47 +08:00
|
|
|
LIVEKIT_KEYS: "APIyxZGQjM2: secretNmU4ZDU3YjA0OWIxNDM4YjhlNWY3YTFjZGUzOWRi"
|
2026-04-19 22:39:01 +08:00
|
|
|
command: --dev --node-ip 192.168.1.14
|
2026-04-19 21:06:21 +08:00
|
|
|
restart: unless-stopped
|
|
|
|
|
networks:
|
|
|
|
|
- gamegroup-net
|
|
|
|
|
|
2026-04-21 16:12:18 +08:00
|
|
|
voice-token-uat:
|
2026-04-19 22:24:28 +08:00
|
|
|
build:
|
|
|
|
|
context: ./backend/voice-token-service
|
2026-04-21 16:12:18 +08:00
|
|
|
container_name: gamegroup-voice-token-uat
|
2026-04-19 22:24:28 +08:00
|
|
|
ports:
|
2026-04-21 16:12:18 +08:00
|
|
|
- "7893:7882"
|
2026-04-19 22:24:28 +08:00
|
|
|
environment:
|
|
|
|
|
- LIVEKIT_API_KEY=APIyxZGQjM2
|
|
|
|
|
- LIVEKIT_API_SECRET=secretNmU4ZDU3YjA0OWIxNDM4YjhlNWY3YTFjZGUzOWRi
|
|
|
|
|
- PB_URL=http://gamegroup-pb-uat:8090
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
depends_on:
|
|
|
|
|
- pocketbase-uat
|
|
|
|
|
networks:
|
|
|
|
|
- gamegroup-net
|
|
|
|
|
|
2026-04-17 15:45:54 +08:00
|
|
|
frontend-uat:
|
|
|
|
|
build:
|
|
|
|
|
context: ./frontend
|
|
|
|
|
dockerfile: Dockerfile
|
2026-04-18 11:11:38 +08:00
|
|
|
args:
|
|
|
|
|
NGINX_CONF: nginx.uat.conf
|
2026-04-17 15:45:54 +08:00
|
|
|
container_name: gamegroup-frontend-uat
|
|
|
|
|
ports:
|
|
|
|
|
- "7034:80"
|
2026-04-21 14:38:48 +08:00
|
|
|
volumes:
|
2026-04-21 15:35:07 +08:00
|
|
|
- ./electron-update/uat:/usr/share/nginx/html/electron-update
|
2026-04-17 15:45:54 +08:00
|
|
|
environment:
|
|
|
|
|
- NODE_ENV=production
|
|
|
|
|
restart: unless-stopped
|
2026-04-18 11:11:38 +08:00
|
|
|
depends_on:
|
|
|
|
|
- pocketbase-uat
|
2026-04-17 15:45:54 +08:00
|
|
|
networks:
|
|
|
|
|
- gamegroup-net
|
|
|
|
|
|
|
|
|
|
networks:
|
|
|
|
|
gamegroup-net:
|
|
|
|
|
driver: bridge
|
|
|
|
|
external: true
|