Merge branch 'master' into patch-2

This commit is contained in:
Git'Fellow 2024-12-12 11:27:24 +01:00 committed by GitHub
commit 793dff239b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 32 additions and 26 deletions

View file

@ -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.

View file

@ -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 \