Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
| 123456789101112 |
- # Run coturn on your VM: docker compose up -d
- # host networking is required so the UDP relay port range works without per-port mapping.
- services:
- coturn:
- image: coturn/coturn:latest
- container_name: coturn
- restart: unless-stopped
- network_mode: host
- volumes:
- - ./turnserver.conf:/etc/coturn/turnserver.conf:ro
- - /etc/letsencrypt:/etc/letsencrypt:ro # TLS cert for turns:
- command: ["-c", "/etc/coturn/turnserver.conf"]
|