[mirotalk] - change deprecated docker-compose into docker compose
This commit is contained in:
@@ -192,9 +192,9 @@ $ cp docker-compose.template.yml docker-compose.yml
|
||||
# Get official image from Docker Hub
|
||||
$ docker pull mirotalk/p2p:latest
|
||||
# create and start containers
|
||||
$ docker-compose up # -d
|
||||
$ docker compose up # -d
|
||||
# to stop and remove resources
|
||||
$ docker-compose down
|
||||
$ docker compose down
|
||||
```
|
||||
|
||||
- Open [http://localhost:3000](http://localhost:3000) in your browser.
|
||||
|
||||
+1
-1
@@ -45,7 +45,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.4.96
|
||||
* @version 1.4.97
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
+2
-2
@@ -45,7 +45,7 @@ Ensure `turnserver.conf` and `docker-compose.yml` are in the same directory.
|
||||
Run:
|
||||
|
||||
```bash
|
||||
docker-compose up -d
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
### 5. Check Logs (Optional)
|
||||
@@ -53,7 +53,7 @@ docker-compose up -d
|
||||
Check logs to verify the server:
|
||||
|
||||
```bash
|
||||
docker-compose logs -f
|
||||
docker compose logs -f <service_name>
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
+2
-2
@@ -101,7 +101,7 @@ if [ "$answer" != "${answer#[Yy]}" ] ;then
|
||||
else
|
||||
log "Build image from source"
|
||||
|
||||
docker-compose build
|
||||
docker compose build
|
||||
|
||||
|
||||
log "Remove old and unused docker images"
|
||||
@@ -111,7 +111,7 @@ if [ "$answer" != "${answer#[Yy]}" ] ;then
|
||||
|
||||
log "Start containers"
|
||||
|
||||
docker-compose up #-d
|
||||
docker compose up #-d
|
||||
else
|
||||
log "Install dependencies"
|
||||
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mirotalk",
|
||||
"version": "1.4.96",
|
||||
"version": "1.4.97",
|
||||
"description": "A free WebRTC browser-based video call",
|
||||
"main": "server.js",
|
||||
"scripts": {
|
||||
@@ -61,7 +61,7 @@
|
||||
"jsonwebtoken": "^9.0.2",
|
||||
"js-yaml": "^4.1.0",
|
||||
"nodemailer": "^6.10.0",
|
||||
"openai": "^4.91.0",
|
||||
"openai": "^4.91.1",
|
||||
"qs": "^6.14.0",
|
||||
"socket.io": "^4.8.1",
|
||||
"swagger-ui-express": "^5.0.1",
|
||||
|
||||
+1
-1
@@ -73,7 +73,7 @@ let brand = {
|
||||
},
|
||||
about: {
|
||||
imageUrl: '../images/mirotalk-logo.gif',
|
||||
title: 'WebRTC P2P v1.4.96',
|
||||
title: 'WebRTC P2P v1.4.97',
|
||||
html: `
|
||||
<button
|
||||
id="support-button"
|
||||
|
||||
+2
-2
@@ -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.4.96
|
||||
* @version 1.4.97
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -11055,7 +11055,7 @@ function showAbout() {
|
||||
Swal.fire({
|
||||
background: swBg,
|
||||
position: 'center',
|
||||
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.4.96',
|
||||
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.4.97',
|
||||
imageUrl: brand.about?.imageUrl && brand.about.imageUrl.trim() !== '' ? brand.about.imageUrl : images.about,
|
||||
customClass: { image: 'img-about' },
|
||||
html: `
|
||||
|
||||
Reference in New Issue
Block a user