mirror of https://github.com/OpenVidu/openvidu.git
deployment: Minor fix to override redis configuration in coturn. Bump coturn to 4.0.0-dev2
parent
56d9b66f83
commit
cec967acc7
|
@ -75,7 +75,7 @@ services:
|
|||
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"
|
||||
|
||||
coturn:
|
||||
image: openvidu/openvidu-coturn:4.0.0-dev1
|
||||
image: openvidu/openvidu-coturn:4.0.0-dev2
|
||||
restart: on-failure
|
||||
network_mode: host
|
||||
environment:
|
||||
|
|
|
@ -85,7 +85,7 @@ services:
|
|||
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"
|
||||
|
||||
coturn:
|
||||
image: openvidu/openvidu-coturn:4.0.0-dev1
|
||||
image: openvidu/openvidu-coturn:4.0.0-dev2
|
||||
restart: on-failure
|
||||
network_mode: host
|
||||
environment:
|
||||
|
|
|
@ -62,7 +62,7 @@ services:
|
|||
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"
|
||||
|
||||
coturn:
|
||||
image: openvidu/openvidu-coturn:4.0.0-dev1
|
||||
image: openvidu/openvidu-coturn:4.0.0-dev2
|
||||
restart: on-failure
|
||||
network_mode: host
|
||||
environment:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
if [ ! -z "${REDIS_IP}" ] && [ ! -z "${DB_NAME}" ] && [ ! -z "${DB_PASSWORD}" ]; then
|
||||
echo "redis-userdb=\"ip=${REDIS_IP} dbname=${DB_NAME} password=${DB_PASSWORD} connect_timeout=30\"" >> turnserver.conf
|
||||
echo "redis-userdb=\"ip=${REDIS_IP} dbname=${DB_NAME} password=${DB_PASSWORD} connect_timeout=30\"" > turnserver.conf
|
||||
fi
|
||||
|
||||
# If command starts with an option, prepend with turnserver binary.
|
||||
|
|
Loading…
Reference in New Issue