mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-10-10 18:58:10 +02:00
Fix coturn container/volume separation: use COTURN_CONTAINER for container_name and map COTURN_VOLUME to /var/lib/coturn
Details: - Removed anonoumys volume - Renamed container_name variable to COTURN_CONTAINER - Added dedicated COTURN_VOLUME with _data suffix for persistence - Mount COTURN_VOLUME into /var/lib/coturn Reference: https://chatgpt.com/share/68da6f12-b238-800f-932b-e37c8a50dddd
This commit is contained in:
@@ -8,7 +8,8 @@ domain: "{{ domains | get_domain(application_id) }}"
|
||||
## Docker
|
||||
COTURN_VERSION: "{{ applications | get_app_conf(application_id, 'docker.services.' ~ entity_name ~ '.version') }}"
|
||||
COTURN_IMAGE: "{{ applications | get_app_conf(application_id, 'docker.services.' ~ entity_name ~ '.image') }}"
|
||||
COTURN_VOLUME: "{{ entity_name }}"
|
||||
COTURN_VOLUME: "{{ entity_name }}_data"
|
||||
COTURN_CONTAINER: "{{ entity_name }}"
|
||||
COTURN_REALM: "{{ domain }}"
|
||||
COTURN_NETWORK_MODE: "{{ applications | get_app_conf(application_id, 'docker.services.' ~ entity_name ~ '.network_mode') }}"
|
||||
|
||||
|
Reference in New Issue
Block a user