mirror of
https://github.com/openlibrecommunity/olcrtc.git
synced 2026-05-26 15:13:40 +00:00
22 lines
634 B
YAML
22 lines
634 B
YAML
services:
|
|
olcrtc-server:
|
|
build:
|
|
context: .
|
|
image: olcrtc/server:local
|
|
container_name: olcrtc-server
|
|
restart: unless-stopped
|
|
environment:
|
|
OLCRTC_CARRIER: "${OLCRTC_CARRIER:?set OLCRTC_CARRIER (telemost, jazz, wbstream)}"
|
|
OLCRTC_ROOM_ID: "${OLCRTC_ROOM_ID:-}"
|
|
OLCRTC_KEY: "${OLCRTC_KEY:-}"
|
|
OLCRTC_DNS: "${OLCRTC_DNS:-1.1.1.1:53}"
|
|
OLCRTC_SOCKS_PROXY: "${OLCRTC_SOCKS_PROXY:-}"
|
|
OLCRTC_SOCKS_PROXY_PORT: "${OLCRTC_SOCKS_PROXY_PORT:-1080}"
|
|
OLCRTC_DEBUG: "${OLCRTC_DEBUG:-false}"
|
|
volumes:
|
|
- olcrtc-state:/var/lib/olcrtc
|
|
init: true
|
|
|
|
volumes:
|
|
olcrtc-state:
|