nextcloud-spreed-signaling/docker-compose.yml

49 lines
1.1 KiB
YAML

version: '3'
services:
spreedbackend:
build: .
volumes:
- ./server.conf:/config/server.conf
network_mode: host
restart: unless-stopped
depends_on:
- nats
- janus
- coturn
nats:
image: nats:2.2.1
volumes:
- ./gnatsd.conf:/config/gnatsd.conf
command: ["-c", "/config/gnatsd.conf"]
network_mode: host
restart: unless-stopped
janus:
build: docker/janus
command: ["janus", "--full-trickle"]
network_mode: host
restart: unless-stopped
coturn:
image: coturn/coturn:latest
network_mode: host
#
# Update command parameters as necessary.
#
# See https://github.com/coturn/coturn/blob/master/README.turnserver for
# available options.
command:
- "--realm"
- "nextcloud.domain.invalid"
- "--static-auth-secret"
- "static_secret_same_in_server_conf"
- "--no-stdout-log"
- "--log-file"
- "stdout"
- "--stale-nonce=600"
- "--use-auth-secret"
- "--lt-cred-mech"
- "--fingerprint"
- "--no-software-attribute"
- "--no-multicast-peers"
restart: unless-stopped