mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-11-23 00:23:25 +01:00
17 lines
447 B
YAML
17 lines
447 B
YAML
|
version: '3.6'
|
||
|
services:
|
||
|
coturn:
|
||
|
image: instrumentisto/coturn:4.5
|
||
|
restart: unless-stopped
|
||
|
command:
|
||
|
- "--external-ip=${EXTERNAL_IP}"
|
||
|
- "--static-auth-secret=${TURN_SECRET}"
|
||
|
volumes:
|
||
|
- ssl_data:/etc/resty-auto-ssl
|
||
|
- ./mod/coturn/entrypoint.sh:/usr/local/bin/docker-entrypoint.sh
|
||
|
- ./mod/coturn/turnserver.conf:/etc/coturn/turnserver.conf
|
||
|
network_mode: host
|
||
|
|
||
|
volumes:
|
||
|
ssl_data:
|
||
|
name: ssl_data
|