mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-06 23:46:24 +00:00
fixes https://github.com/zokradonh/kopano-docker/issues/452 Signed-off-by: Felix Bartels <felix@host-consultants.de>
27 lines
686 B
YAML
27 lines
686 B
YAML
version: "3.5"
|
|
|
|
services:
|
|
kopano_kwmserver:
|
|
environment:
|
|
- 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
|