coturn.yaml
· 286 B · YAML
Raw
version: '3.8'
services:
coturn:
image: coturn/coturn:latest
restart: always
ports:
- "3478:3478"
- "3478:3478/udp"
- "443:443"
- "443:443/udp"
- "49152-49200:49152-49200/udp"
volumes:
- ./coturn.conf:/etc/coturn/turnserver.conf:ro
| 1 | version: '3.8' |
| 2 | |
| 3 | services: |
| 4 | coturn: |
| 5 | image: coturn/coturn:latest |
| 6 | restart: always |
| 7 | ports: |
| 8 | - "3478:3478" |
| 9 | - "3478:3478/udp" |
| 10 | - "443:443" |
| 11 | - "443:443/udp" |
| 12 | - "49152-49200:49152-49200/udp" |
| 13 | volumes: |
| 14 | - ./coturn.conf:/etc/coturn/turnserver.conf:ro |