the following code is my current docker-compose.override.yml
version: ‘3.1’
services:
# --------------------------------------------------------------
#
# Change this if your want use your own application.
# It’s very important expose your application in port 5442
# and use the http protocol.
#
# Default Application
#
# Openvidu-Call Version: 2.17.0
#
# --------------------------------------------------------------
app:
image: openvidu/openvidu-basic-webinar:2.17.0
restart: on-failure
network_mode: host
environment:
- SERVER_PORT=5442
- OPENVIDU_URL=http://localhost:5443
- OPENVIDU_SECRET=${OPENVIDU_SECRET}
- CALL_OPENVIDU_CERTTYPE=${CERTIFICATE_TYPE}
logging:
options:
max-size: “${DOCKER_LOGS_MAX_SIZE:-100M}”
If you deploy an application in the same machine as OpenVidu, the application has to disable SSL because there are an NGINX server managing the certificate.
I have only one application running in the machine as OpenVidu, and previously the OpenVidu call application used to work as expected.
I Just updated docker-compose.override.yml to configure OpenVidu webinar image. This update giving me error. If update it back image value to OpenVidu call, then it is working as expected.