mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-10-10 02:38:10 +02:00
- Introduced `COTURN_NETWORK_MODE` to support both host and bridge modes - Updated docker-compose template to skip port publishing in host mode - Changed user_password credential algorithm to random_hex for stronger randomness - Set default network_mode: host in config Ref: https://chatgpt.com/share/68d72a50-c36c-800f-9367-32c4ae520000
20 lines
413 B
YAML
20 lines
413 B
YAML
username: coturnconsumer
|
|
server:
|
|
domains:
|
|
canonical:
|
|
- "coturn.{{ PRIMARY_DOMAIN }}"
|
|
docker:
|
|
services:
|
|
coturn:
|
|
image: "coturn/coturn"
|
|
version: "latest"
|
|
cpus: 1.0
|
|
mem_reservation: 512m
|
|
mem_limit: 1g
|
|
pids_limit: 256
|
|
network_mode: host
|
|
redis:
|
|
enabled: false
|
|
database:
|
|
enabled: false
|