mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
- docker-compose.yml: owncord + livekit/livekit-server on shared network - Secrets (API key/secret) injected via .env → OWNCORD_VOICE_* env vars - livekit.yaml.example: template config with port ranges and node_ip guidance - .env.example: secret template with min-length reminder for API secret - .gitignore: add .env / Server/.env to prevent accidental secret commits Users: cp .env.example .env && cp livekit.yaml.example livekit.yaml, fill in values, then docker compose up -d
55 lines
1.8 KiB
YAML
55 lines
1.8 KiB
YAML
# OwnCord server stack — chat server + LiveKit voice/video
|
|
#
|
|
# Quick start:
|
|
# 1. cp .env.example .env && edit .env (set secrets + public IP)
|
|
# 2. cp livekit.yaml.example livekit.yaml && edit livekit.yaml (same keys)
|
|
# 3. docker compose up -d
|
|
#
|
|
# LiveKit runs as a separate container on the same internal network.
|
|
# The OwnCord server reaches it at ws://livekit:7880 (Docker DNS).
|
|
# Browser clients reach LiveKit directly via the ports published below,
|
|
# so your firewall must allow TCP 7880-7881 and UDP 50000-60000.
|
|
|
|
services:
|
|
|
|
owncord:
|
|
image: ghcr.io/j3vb/owncord-server:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8443:8443"
|
|
environment:
|
|
# Secrets injected from .env — never hardcode these
|
|
OWNCORD_VOICE_LIVEKIT_API_KEY: ${LIVEKIT_API_KEY}
|
|
OWNCORD_VOICE_LIVEKIT_API_SECRET: ${LIVEKIT_API_SECRET}
|
|
volumes:
|
|
# Mount your config.yaml for non-secret settings (server name, TLS, etc.)
|
|
# See the example config at: https://github.com/J3vb/OwnCord#configuration
|
|
- ./config.yaml:/app/config.yaml:ro
|
|
# Persistent data (SQLite DB + uploaded files)
|
|
- owncord-data:/app/data
|
|
depends_on:
|
|
- livekit
|
|
networks:
|
|
- owncord-net
|
|
|
|
livekit:
|
|
image: livekit/livekit-server:v1
|
|
restart: unless-stopped
|
|
# LiveKit config file — copy livekit.yaml.example → livekit.yaml and fill in
|
|
command: --config /etc/livekit/livekit.yaml
|
|
ports:
|
|
- "7880:7880" # WebSocket API (OwnCord server + browser signalling)
|
|
- "7881:7881" # TCP fallback for WebRTC (clients behind strict NAT)
|
|
- "50000-60000:50000-60000/udp" # WebRTC UDP media streams
|
|
volumes:
|
|
- ./livekit.yaml:/etc/livekit/livekit.yaml:ro
|
|
networks:
|
|
- owncord-net
|
|
|
|
networks:
|
|
owncord-net:
|
|
driver: bridge
|
|
|
|
volumes:
|
|
owncord-data:
|