diff --git a/README.md b/README.md index 7d9bba5..37d8f51 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Not every stack is tested to fully work. | magneticod | ✅ | `boramalper/magneticod` | DHT indexing daemon. | [Website](https://www.boramalper.org/labs/magnetico/), [Github](https://github.com/boramalper/magnetico) | | ~~magneticod-python~~ | ✅ Abandoned | `skobkin/magneticod-python` | DHT indexing daemon (legacy version) | [Website](https://www.boramalper.org/labs/magnetico/), [Github](https://github.com/boramalper/magnetico) | | ~~mariadb-common~~ | ❌ Unfinished | `mariadb` | MariaDB database for common use. | [Website](https://mariadb.org) | -| Metube | Not tested | `alexta69/metube` | Web GUI for yt-dlp. | [Github](https://github.com/alexta69/metube) | +| Metube | ✅ | `alexta69/metube` | Web GUI for yt-dlp. | [Github](https://github.com/alexta69/metube) | | Murmur | ✅ | `registry.gitlab.com/skobkin/docker-murmur` | Mumble VoIP server (custom build) | [Website](https://www.mumble.info), [Github](https://github.com/mumble-voip/mumble) | | NextCloud | ❌ Unfinished | `nextcloud` | File management, synchronization, management and GTD platform. | [Website](https://nextcloud.com), [Github](https://github.com/nextcloud/server) | | Open Streaming Platform | ✅ | `deamos/openstreamingplatform` | Live streaming platform. | [Website](https://openstreamingplatform.com), [Gitlab](https://gitlab.com/osp-group/flask-nginx-rtmp-manager) | diff --git a/metube/.env.dist b/metube/.env.dist index 3df8fee..32a306a 100644 --- a/metube/.env.dist +++ b/metube/.env.dist @@ -7,7 +7,7 @@ HOST_USER=1000 HOST_DATA_DIR=./data WEBUI_BIND_ADDR=127.0.0.1 -WEBUI_BIND_PORT=8384 +WEBUI_BIND_PORT=8081 LOG_MAX_SIZE=5m -LOG_MAX_FILE=5 \ No newline at end of file +LOG_MAX_FILE=5 diff --git a/metube/docker-compose.yml b/metube/docker-compose.yml index cb9c696..960f4a3 100644 --- a/metube/docker-compose.yml +++ b/metube/docker-compose.yml @@ -7,9 +7,9 @@ services: container_name: metube user: "${HOST_USER:-1000}" volumes: - - "${HOST_DATA_DIR}:/downloads" + - "${HOST_DATA_DIR:-./data}:/downloads" ports: - - "${WEBUI_BIND_ADDR}:${WEBUI_BIND_PORT}:8081" + - "${WEBUI_BIND_ADDR:-127.0.0.1}:${WEBUI_BIND_PORT:-8081}:8081/tcp" env_file: .env restart: unless-stopped logging: