mirror of
https://github.com/strukturag/nextcloud-spreed-signaling
synced 2026-03-14 14:35:44 +01:00
Merge branch 'master' into patch-2
This commit is contained in:
commit
793dff239b
4 changed files with 32 additions and 26 deletions
|
|
@ -1,6 +1,5 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
|
||||
spreedbackend:
|
||||
build:
|
||||
context: ..
|
||||
|
|
@ -8,27 +7,33 @@ services:
|
|||
platforms:
|
||||
- "linux/amd64"
|
||||
volumes:
|
||||
- ./server.conf:/config/server.conf
|
||||
- ./server.conf:/config/server.conf:ro
|
||||
network_mode: host
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- nats
|
||||
- janus
|
||||
- coturn
|
||||
|
||||
nats:
|
||||
image: nats:2.2.1
|
||||
image: nats:2.10
|
||||
volumes:
|
||||
- ./gnatsd.conf:/config/gnatsd.conf
|
||||
- type: bind
|
||||
source: ./gnatsd.conf
|
||||
target: /config/gnatsd.conf
|
||||
read_only: true
|
||||
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
|
||||
image: coturn/coturn:4.6
|
||||
network_mode: host
|
||||
#
|
||||
# Update command parameters as necessary.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
# Modified from https://gitlab.com/powerpaul17/nc_talk_backend/-/blob/dcbb918d8716dad1eb72a889d1e6aa1e3a543641/docker/janus/Dockerfile
|
||||
|
||||
FROM alpine:3
|
||||
|
||||
RUN apk add --no-cache curl autoconf automake libtool pkgconf build-base \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue