From 681f880669c7ee39a81ada30d7f2c1fd7d1d3ada Mon Sep 17 00:00:00 2001 From: Carlo Landmeter Date: Wed, 4 Aug 2021 10:56:57 +0200 Subject: [PATCH] coturn: expose ENABLE_HTTPS_PROXY env variable The coturn entrypoint checks if ENABLE_HTTPS_PROXY is set but it was not added the the compose environment stanza so it was never set in the container. --- docker-compose.tmpl.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.tmpl.yml b/docker-compose.tmpl.yml index 2e86700..6e2bc97 100644 --- a/docker-compose.tmpl.yml +++ b/docker-compose.tmpl.yml @@ -337,6 +337,8 @@ services: {{end}} - ./mod/coturn/entrypoint.sh:/usr/local/bin/docker-entrypoint.sh - ./mod/coturn/turnserver.conf:/etc/coturn/turnserver.conf + environment: + ENABLE_HTTPS_PROXY: network_mode: host {{end}}