From e53a958a1b68552d44e763598273993ea4766bb4 Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Mon, 9 Dec 2024 09:22:46 +0100 Subject: [PATCH] [mirotalk] - fix docker compose template yml, update dep --- app/src/server.js | 2 +- docker-compose.template.yml | 10 ++++++---- package.json | 6 +++--- public/js/client.js | 4 ++-- 4 files changed, 12 insertions(+), 10 deletions(-) diff --git a/app/src/server.js b/app/src/server.js index 21c7e951..64b9f0ac 100755 --- a/app/src/server.js +++ b/app/src/server.js @@ -39,7 +39,7 @@ dependencies: { * @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon * @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.3.95 + * @version 1.3.96 * */ diff --git a/docker-compose.template.yml b/docker-compose.template.yml index c30a3e75..a4bbfb41 100644 --- a/docker-compose.template.yml +++ b/docker-compose.template.yml @@ -2,15 +2,17 @@ version: '3' services: mirotalk: + # Use the pre-built image from Docker Hub (uncomment to use this option) image: mirotalk/p2p:latest - build: - context: . - dockerfile: Dockerfile + # Uncomment the following lines to build the image locally instead + # build: + # context: . + # dockerfile: Dockerfile container_name: mirotalk hostname: mirotalk volumes: - .env:/src/.env:ro - # These volumes are not mandatory, uncomment if you want to use it + # Optional volumes for real-time updates: # - ./app/:/src/app/:ro # - ./public/:/src/public/:ro restart: unless-stopped diff --git a/package.json b/package.json index 1f756ba8..75a59619 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mirotalk", - "version": "1.3.95", + "version": "1.3.96", "description": "A free WebRTC browser-based video call", "main": "server.js", "scripts": { @@ -49,13 +49,13 @@ "cors": "^2.8.5", "crypto-js": "^4.2.0", "dotenv": "^16.4.7", - "express": "^4.21.1", + "express": "^4.21.2", "express-openid-connect": "^2.17.1", "jsonwebtoken": "^9.0.2", "js-yaml": "^4.1.0", "ngrok": "^5.0.0-beta.2", "nodemailer": "^6.9.16", - "openai": "^4.75.0", + "openai": "^4.76.0", "qs": "^6.13.1", "socket.io": "^4.8.1", "swagger-ui-express": "^5.0.1", diff --git a/public/js/client.js b/public/js/client.js index 40ed8e96..69967872 100644 --- a/public/js/client.js +++ b/public/js/client.js @@ -15,7 +15,7 @@ * @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon * @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.3.95 + * @version 1.3.96 * */ @@ -10598,7 +10598,7 @@ function showAbout() { Swal.fire({ background: swBg, position: 'center', - title: 'WebRTC P2P v1.3.95', + title: 'WebRTC P2P v1.3.96', imageAlt: 'mirotalk-about', imageUrl: images.about, customClass: { image: 'img-about' },