From 6387e53c23c14931b792d8ca664cbb1d0cfa0b88 Mon Sep 17 00:00:00 2001 From: enrilinux Date: Sun, 8 Mar 2026 14:20:18 +0100 Subject: [PATCH] first commit --- README.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/README.md b/README.md index e69de29..811b4a0 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,31 @@ +# Streamvault + +Streamvault is a Docker app that uses **yt-dlp** for download videos from YouTube and many other platforms. + +## How to install: + +Use Docker run: + +```bash +docker run -d \ + --name streamvault \ + -p 8000:8000 \ + -v ./downloads:/app/downloads \ + enrilinux/streamvault:latest +``` + +or use Docker Compose: +```yaml +services: + streamvault: + image: enrilinux/streamvault:latest + ports: + - 8000:8000 + volumes: + - ./downloads:/app/downloads +``` +## Access the Web Interface: +``` +http://localhost:8000 +``` +