commit 65c69068afb3ba824d78fe5bc0887b335ef4aa57 Author: stitchy Date: Tue Dec 24 05:59:43 2024 -0800 feat(coturn): initial docker compose diff --git a/coturn/docker-compose.yml b/coturn/docker-compose.yml new file mode 100644 index 0000000..6087e36 --- /dev/null +++ b/coturn/docker-compose.yml @@ -0,0 +1,13 @@ +services: + coturn: + network_mode: host + image: coturn/coturn:4.6.2 + container_name: coturn + user: root + volumes: + - ./config:/etc/coturn:ro + - /var/lib/acme/turn.stitchy.moe:/etc/letsencrypt/live/turn.stitchy.moe:ro + - type: tmpfs + target: /var/lib/coturn + + restart: unless-stopped