mirror of
https://github.com/CoolnsX/selfhost.git
synced 2025-12-20 15:25:18 +05:30
22 lines
445 B
YAML
22 lines
445 B
YAML
services:
|
|
coturn:
|
|
image: coturn/coturn:alpine
|
|
privileged: true
|
|
container_name: coturn
|
|
command: -n --log-file=stdout
|
|
volumes:
|
|
- ./turnserver.conf:/etc/coturn/turnserver.conf
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3478:3478/udp"
|
|
- "3478:3478"
|
|
- "5349:5349"
|
|
- "5349:5349/udp"
|
|
- "49160-49200:49160-49200/udp"
|
|
networks:
|
|
- nginx_proxy
|
|
|
|
networks:
|
|
nginx_proxy:
|
|
external: true
|