Ingen beskrivning
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.

docker-compose.yml 457B

123456789101112
  1. # Run coturn on your VM: docker compose up -d
  2. # host networking is required so the UDP relay port range works without per-port mapping.
  3. services:
  4. coturn:
  5. image: coturn/coturn:latest
  6. container_name: coturn
  7. restart: unless-stopped
  8. network_mode: host
  9. volumes:
  10. - ./turnserver.conf:/etc/coturn/turnserver.conf:ro
  11. - /etc/letsencrypt:/etc/letsencrypt:ro # TLS cert for turns:
  12. command: ["-c", "/etc/coturn/turnserver.conf"]