dacker-compose updated

pull/437/head
OscarSotoSanchez 2020-04-17 13:36:36 +02:00
parent 0b26883eb1
commit f0e02b88d8
4 changed files with 8 additions and 10 deletions

View File

@ -5,7 +5,7 @@ services:
# It's very important expose your application in port 5442 # It's very important expose your application in port 5442
# and use the http protocol. # and use the http protocol.
app: app:
image: openvidu/openvidu-call:2.13.0-beta4 image: openvidu/openvidu-call:2.13.0-beta5
restart: on-failure restart: on-failure
ports: ports:
- "5442:80" - "5442:80"

View File

@ -18,9 +18,10 @@ version: '3.1'
services: services:
openvidu-server: openvidu-server:
image: openvidu/openvidu-server:2.13.0-beta3 image: openvidu/openvidu-server:2.13.0-beta6
restart: on-failure restart: on-failure
network_mode: host network_mode: host
entrypoint: ['/bin/bash', '-c', 'export COTURN_IP=`curl --silent ifconfig.co`; /usr/local/bin/entrypoint.sh']
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
- ${OPENVIDU_RECORDING_PATH}:${OPENVIDU_RECORDING_PATH} - ${OPENVIDU_RECORDING_PATH}:${OPENVIDU_RECORDING_PATH}
@ -32,12 +33,12 @@ services:
- SERVER_SSL_ENABLED=false - SERVER_SSL_ENABLED=false
- SERVER_PORT=5443 - SERVER_PORT=5443
- OPENVIDU_RECORDING=true - OPENVIDU_RECORDING=true
- OPENVIDU_RECORDING_COMPOSED_URL=https://${OPENVIDU_DOMAIN_OR_PUBLIC_IP}/dashboard
- KMS_URIS=["ws://localhost:8888/kurento"] - KMS_URIS=["ws://localhost:8888/kurento"]
- COTURN_IP=${OPENVIDU_DOMAIN_OR_PUBLIC_IP}
- COTURN_REDIS_IP=127.0.0.1 - COTURN_REDIS_IP=127.0.0.1
kms: kms:
image: ${KMS_IMAGE:-kurento/kurento-media-server-dev:6.13.1} image: ${KMS_IMAGE:-kurento/kurento-media-server:6.13.1}
restart: always restart: always
network_mode: host network_mode: host
ulimits: ulimits:
@ -45,7 +46,6 @@ services:
volumes: volumes:
- /core:/core - /core:/core
environment: environment:
- KMS_EXTERNAL_ADDRESS=auto
- KMS_MIN_PORT=40000 - KMS_MIN_PORT=40000
- KMS_MAX_PORT=57000 - KMS_MAX_PORT=57000
- GST_DEBUG=${KMS_DEBUG_LEVEL:-} - GST_DEBUG=${KMS_DEBUG_LEVEL:-}
@ -68,7 +68,7 @@ services:
- MAX_PORT=65535 - MAX_PORT=65535
nginx: nginx:
image: openvidu/openvidu-proxy:1.0.0-beta4 image: openvidu/openvidu-proxy:1.0.0-beta5
restart: on-failure restart: on-failure
network_mode: host network_mode: host
volumes: volumes:

View File

@ -77,7 +77,6 @@ server {
} }
location /dashboard { location /dashboard {
rewrite ^/dashboard/(.*)$ /$1 break; proxy_pass http://openviduserver;
proxy_pass http://openviduserver/;
} }
} }

View File

@ -77,7 +77,6 @@ server {
} }
location /dashboard { location /dashboard {
rewrite ^/dashboard/(.*)$ /$1 break; proxy_pass http://openviduserver;
proxy_pass http://openviduserver/;
} }
} }