Modern Video and Audio Downloader
1.9K
A modern, full-stack web application for downloading videos and audio from YouTube and 1000+ other platforms.
docker run -d \
--name ourtube \
-p 8000:8000 \
-v $(pwd)/downloads:/app/downloads \
chicohaager/ourtube:latest
version: '3.8'
services:
ourtube:
image: chicohaager/ourtube:latest
ports:
- "8000:8000"
volumes:
- ./downloads:/app/downloads
- ./config:/app/config
environment:
- MAX_CONCURRENT_DOWNLOADS=3
- ENABLE_YTDL_UPDATE=true
restart: unless-stopped
| Variable | Default | Description |
|---|---|---|
DOWNLOAD_DIR | /app/downloads | Download directory |
MAX_CONCURRENT_DOWNLOADS | 3 | Max simultaneous downloads |
ENABLE_YTDL_UPDATE | true | Auto-update yt-dlp |
YTDL_UPDATE_INTERVAL | 86400 | Update interval (seconds) |
OUTPUT_TEMPLATE | %(title)s.%(ext)s | Filename template |
HOST | 0.0.0.0 | Server host |
PORT | 8000 | Server port |
docker run -d \
--name ourtube \
-p 8000:8000 \
-v $(pwd)/downloads:/app/downloads \
-e MAX_CONCURRENT_DOWNLOADS=5 \
-e ENABLE_YTDL_UPDATE=true \
chicohaager/ourtube:latest
docker run -d \
--name ourtube \
-p 8000:8000 \
-v $(pwd)/downloads:/app/downloads \
-e PROXY=http://proxy.example.com:8080 \
chicohaager/ourtube:latest
/app/downloads - Downloaded files/app/config - Configuration files (optional)After starting the container, access the web interface at:
latest - Latest stable releasev1.0.0 - Specific versionstable - Stable release branchMIT License - see LICENSE
Content type
Image
Digest
sha256:c37843edc…
Size
234.6 MB
Last updated
about 2 months ago
docker pull chicohaager/ourtube