20 lines
599 B
YAML
20 lines
599 B
YAML
# LiveKit server for Communication module (online meetings)
|
|
# Start: docker compose -f docker/livekit.yml up -d
|
|
# Stop: docker compose -f docker/livekit.yml down
|
|
#
|
|
# Windows note: ports 7880-7881 are often blocked by Hyper-V.
|
|
# We use 18880-18882 with matching internal/external ports for WebRTC.
|
|
|
|
services:
|
|
livekit:
|
|
image: livekit/livekit-server:latest
|
|
container_name: ultimatepos-livekit
|
|
restart: unless-stopped
|
|
ports:
|
|
- "18880:18880"
|
|
- "18881:18881"
|
|
- "18882:18882/udp"
|
|
volumes:
|
|
- ./livekit.yaml:/livekit.yaml:ro
|
|
command: --config /livekit.yaml
|