mirror of
https://github.com/casjaysdevdocker/youtube-dl
synced 2026-05-15 14:47:49 -04:00
610d04793be346a0a010be1575afbc2497649206
Some checks failed
release-tag / release-image (push) Has been cancelled
Update the embedded entrypoint copies in rootfs/ to match the upstream template change. Internal state files renamed to dotfiles so they're not matched by `/run/*.pid` cleanup globs: - /run/init.d/entrypoint.pid -> /run/.entrypoint.pid - /run/no_exit.pid -> /run/.no_exit.pid - /run/backup.pid -> /run/.backup.pid - /run/__start_init_scripts.pid -> /run/.start_init_scripts.pid Per-service PIDs in /run/init.d/ are unchanged. rootfs/usr/local/bin/entrypoint.sh rootfs/usr/local/etc/docker/functions/entrypoint.sh rootfs/usr/local/share/template-files/config/env/default.sample rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
👋 Welcome to youtube-dl 🚀
youtube-dl README
Run container
dockermgr update youtube-dl
via command line
docker pull casjaysdevdocker/youtube-dl:latest && \
docker run -d \
--restart always \
--name casjaysdevdocker-youtube-dl \
--hostname casjaysdev-youtube-dl \
-e TZ=${TIMEZONE:-America/New_York} \
-v $HOME/Videos/ytdl:/data/video:z \
-v $HOME/Music/ytdl:/data/audio:z \
-v $HOME/.local/share/srv/docker/youtube-dl/files/config:/config:z \
-p 80:80 \
casjaysdevdocker/youtube-dl:latest
via docker-compose
version: "2"
services:
youtube-dl:
image: casjaysdevdocker/youtube-dl
container_name: youtube-dl
environment:
- TZ=America/New_York
- HOSTNAME=casjaysdev-youtube-dl
volumes:
- $HOME/Videos/ytdl:/data/video:z
- $HOME/Music/ytdl:/data/audio:z
- $HOME/.local/share/srv/docker/youtube-dl/files/config:/config:z
ports:
- 80:80
restart: always
Authors
🤖 casjay: Github Docker 🤖
⛵ CasjaysDevDocker: Github Docker ⛵
Description
Languages
Shell
91.8%
Dockerfile
8.2%