19 lines
582 B
Plaintext
19 lines
582 B
Plaintext
# This docker-compose requires host networking, which is only available on Linux
|
|
# This compose will not function correctly on Mac or Windows
|
|
services:
|
|
# caddy:
|
|
# image: livekit/caddyl4
|
|
# command: run --config /etc/caddy.yaml --adapter yaml
|
|
# restart: unless-stopped
|
|
# network_mode: "host"
|
|
# volumes:
|
|
# - ./caddy.yaml:/etc/caddy.yaml
|
|
# - ./caddy_data:/data
|
|
livekit:
|
|
image: livekit/livekit-server:latest
|
|
command: --config /etc/livekit.yaml
|
|
restart: unless-stopped
|
|
network_mode: "host"
|
|
volumes:
|
|
- ./livekit.yaml:/etc/livekit.yaml
|