mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-06 23:46:24 +00:00
add example configuration to use kwmbridge with standalon meet
Signed-off-by: Felix Bartels <felix@host-consultants.de>
This commit is contained in:
parent
64907e454b
commit
7b11f4f5ba
27
examples/meet/docker-compose-sfu.yml
Normal file
27
examples/meet/docker-compose-sfu.yml
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
version: "3.5"
|
||||||
|
|
||||||
|
services:
|
||||||
|
kopano_kwmserver:
|
||||||
|
environment:
|
||||||
|
- DEBUG=true
|
||||||
|
- enable_mcu_api=yes
|
||||||
|
- pipeline_forced_regexp=@conference/.*
|
||||||
|
#- pipeline_forced_regexp=@group/.*
|
||||||
|
|
||||||
|
kopano_kwmbridge:
|
||||||
|
image: ${docker_repo:-zokradonh}/kopano_kwmbridge:${KWMBRIDGE_VERSION:-latest}
|
||||||
|
read_only: true
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- kopano_kwmserver
|
||||||
|
environment:
|
||||||
|
- INSECURE=${INSECURE}
|
||||||
|
- oidc_issuer_identifier=https://${FQDN}
|
||||||
|
- kwm_server_urls=https://${FQDN}
|
||||||
|
volumes:
|
||||||
|
- /etc/machine-id:/etc/machine-id
|
||||||
|
- /etc/machine-id:/var/lib/dbus/machine-id
|
||||||
|
- kopanossl/:/kopano/ssl
|
||||||
|
network_mode: "host"
|
||||||
|
tmpfs:
|
||||||
|
- /tmp
|
@ -68,6 +68,12 @@ if [ -n "${public_guest_access_regexp:-}" ]; then
|
|||||||
set -- "$@" --public-guest-access-regexp="$public_guest_access_regexp"
|
set -- "$@" --public-guest-access-regexp="$public_guest_access_regexp"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# sfu functionality
|
||||||
|
if [ -n "${pipeline_forced_regexp:-}" ]; then
|
||||||
|
set -- "$@" --pipeline-forced-regexp="$pipeline_forced_regexp"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
if [ "${AUTOCONFIGURE}" = true ]; then
|
if [ "${AUTOCONFIGURE}" = true ]; then
|
||||||
if [ "$INSECURE" = "yes" ]; then
|
if [ "$INSECURE" = "yes" ]; then
|
||||||
dockerize \
|
dockerize \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user