mirror of
https://github.com/strukturag/nextcloud-spreed-signaling.git
synced 2024-11-23 07:57:40 +00:00
2582e4ffb4
Follow-up to #384.
53 lines
1.2 KiB
YAML
53 lines
1.2 KiB
YAML
version: '3'
|
|
|
|
services:
|
|
spreedbackend:
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/server/Dockerfile
|
|
platforms:
|
|
- "linux/amd64"
|
|
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: 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
|