Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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"]