[mirotalk] - rb

This commit is contained in:
Miroslav Pejic
2025-04-02 10:11:39 +02:00
parent 49c82e8b3f
commit 98afe41ff9
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -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.
+2 -2
View File
@@ -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 <service_name>
docker-compose logs -f <service_name>
```
---
+2 -2
View File
@@ -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"