2026-04-17 15:45:54 +08:00
|
|
|
services:
|
|
|
|
|
pocketbase:
|
|
|
|
|
image: ghcr.io/muchobien/pocketbase:0.22.4
|
|
|
|
|
container_name: gamegroup-pb
|
|
|
|
|
ports:
|
2026-04-18 20:22:43 +08:00
|
|
|
- "8090:8090"
|
2026-04-17 15:45:54 +08:00
|
|
|
volumes:
|
|
|
|
|
- ./backend/pb_data:/pb_data
|
|
|
|
|
- ./backend/pb_migrations:/pb_migrations
|
2026-04-17 20:23:39 +08:00
|
|
|
- ./backend/pb_hooks:/pb_hooks
|
2026-04-17 15:45:54 +08:00
|
|
|
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-19 21:06:21 +08:00
|
|
|
livekit:
|
|
|
|
|
image: livekit/livekit-server:v1.7
|
|
|
|
|
container_name: gamegroup-livekit
|
|
|
|
|
ports:
|
|
|
|
|
- "7880:7880"
|
|
|
|
|
- "7881:7881/udp"
|
|
|
|
|
environment:
|
|
|
|
|
- LIVEKIT_KEYS="APIyxZGQjM2: secretNmU4ZDU3YjA0OWIxNDM4YjhlNWY3YTFjZGUzOWRi"
|
|
|
|
|
command: --dev
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
networks:
|
|
|
|
|
- gamegroup-net
|
|
|
|
|
|
2026-04-17 15:45:54 +08:00
|
|
|
networks:
|
|
|
|
|
gamegroup-net:
|
|
|
|
|
driver: bridge
|