5d434ead6f
- LiveKit WebRTC SFU container in docker-compose - Voice token microservice (Node.js + Express) - VoiceRoom page with member grid and controls - useVoiceRoom composable for LiveKit connection - Voice entry button in TeamSessionPanel - Nginx proxy for voice-token service API Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
55 lines
1.3 KiB
YAML
55 lines
1.3 KiB
YAML
services:
|
|
pocketbase:
|
|
image: ghcr.io/muchobien/pocketbase:0.22.4
|
|
container_name: gamegroup-pb
|
|
ports:
|
|
- "8090:8090"
|
|
volumes:
|
|
- ./backend/pb_data:/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
|
|
|
|
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
|
|
|
|
voice-token:
|
|
build:
|
|
context: ./backend/voice-token-service
|
|
container_name: gamegroup-voice-token
|
|
ports:
|
|
- "7882:7882"
|
|
environment:
|
|
- LIVEKIT_API_KEY=APIyxZGQjM2
|
|
- LIVEKIT_API_SECRET=secretNmU4ZDU3YjA0OWIxNDM4YjhlNWY3YTFjZGUzOWRi
|
|
- PB_URL=http://gamegroup-pb:8090
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- pocketbase
|
|
networks:
|
|
- gamegroup-net
|
|
|
|
networks:
|
|
gamegroup-net:
|
|
driver: bridge
|