Another web front end for youtube-dl.
100K+
Visit GitHub for more details.
From DockerHUB
docker pull d0u9/youtube-dl-webui
For china users, aliyun docker repo is more preferable:
docker pull registry.cn-hangzhou.aliyuncs.com/master/youtube-dl-webui
From DockerFile
cd /tmp
docker build -f </path/to/Dockerfile> -t youtube-dl-webui .
Run container
docker run -d \
--name <container_name> \
-e PGID=<gid> \
-e PUID=<uid> \
-e PORT=port \
-e CONF_FILE=<config_file_in_container> \
-v <config_file>:<config_file_in_container> \
-p <host_port>:<port> \
-v <host_download_dir>:<download_dir> \
d0u9/youtube-dl-webui
Automatically start container after booting
Create /etc/systemd/system/docker-youtube_dl_webui.service, and fill
with the contents below:
[Unit]
Description=youtube-dl downloader
Requires=docker.service
After=docker.service
[Service]
Restart=always
ExecStart=/usr/bin/docker start -a <container_name>
ExecStop=/usr/bin/docker stop -t 2 <container_name>
[Install]
WantedBy=default.target
All defualt settings can be found in this json file.
/tmp/youtube_dl;/tmp/youtube_dl_webui.db;10;0.0.0.0;5000Content type
Image
Digest
Size
137 MB
Last updated
almost 8 years ago
docker pull d0u9/youtube-dl-webui:stable