2023-06-12 21:52:27 +08:00
|
|
|
version: "3.9"
|
|
|
|
|
|
|
|
networks:
|
|
|
|
lkbackend:
|
|
|
|
|
|
|
|
services:
|
|
|
|
auth-service:
|
2023-07-05 01:57:35 +08:00
|
|
|
image: ghcr.io/vector-im/lk-jwt-service:latest-ci
|
2023-06-12 21:52:27 +08:00
|
|
|
hostname: auth-server
|
|
|
|
ports:
|
|
|
|
- 8881:8080
|
|
|
|
environment:
|
2023-07-05 01:57:35 +08:00
|
|
|
- LIVEKIT_URL=ws://localhost:7880
|
|
|
|
- LIVEKIT_KEY=devkey
|
|
|
|
- LIVEKIT_SECRET=secret
|
2023-06-12 21:52:27 +08:00
|
|
|
deploy:
|
|
|
|
restart_policy:
|
|
|
|
condition: on-failure
|
|
|
|
networks:
|
|
|
|
- lkbackend
|
|
|
|
|
|
|
|
livekit:
|
|
|
|
image: livekit/livekit-server:latest
|
|
|
|
command: --dev --config /etc/livekit.yaml
|
|
|
|
restart: unless-stopped
|
|
|
|
ports:
|
|
|
|
- "7880:7880"
|
|
|
|
- "7881:7881"
|
|
|
|
- "7882:7882"
|
|
|
|
- "50100-50200:50100-50200"
|
|
|
|
volumes:
|
|
|
|
- ./backend/livekit.yaml:/etc/livekit.yaml
|
|
|
|
networks:
|
|
|
|
- lkbackend
|
|
|
|
|
|
|
|
redis:
|
|
|
|
image: redis:6-alpine
|
|
|
|
command: redis-server /etc/redis.conf
|
|
|
|
ports:
|
|
|
|
- 6379:6379
|
|
|
|
volumes:
|
|
|
|
- ./backend/redis.conf:/etc/redis.conf
|
|
|
|
networks:
|
|
|
|
- lkbackend
|