metube. Fixing port defaults. Adding default values for env variables. Marking as working. Solves #9.
This commit is contained in:
parent
d64bb0225a
commit
aa0ae4fdc8
|
@ -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) |
|
||||
|
|
|
@ -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
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue