mirror of
https://github.com/openlibrecommunity/olcrtc.git
synced 2026-05-26 07:08:11 +00:00
20 lines
486 B
YAML
20 lines
486 B
YAML
services:
|
|
olcrtc-server:
|
|
build:
|
|
context: .
|
|
image: olcrtc/server:local
|
|
container_name: olcrtc-server
|
|
restart: unless-stopped
|
|
environment:
|
|
OLCRTC_ROOM_ID: "${OLCRTC_ROOM_ID:?set OLCRTC_ROOM_ID}"
|
|
OLCRTC_KEY: "${OLCRTC_KEY:-}"
|
|
OLCRTC_DNS: "${OLCRTC_DNS:-1.1.1.1:53}"
|
|
OLCRTC_DUO: "${OLCRTC_DUO:-false}"
|
|
OLCRTC_DEBUG: "${OLCRTC_DEBUG:-false}"
|
|
volumes:
|
|
- olcrtc-state:/var/lib/olcrtc
|
|
init: true
|
|
|
|
volumes:
|
|
olcrtc-state:
|