2023-07-29 12:40:49 -04:00
2022-10-11 16:09:09 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-10-07 15:56:48 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-10-07 15:56:48 -04:00
2023-01-08 11:22:34 -05:00
2023-01-08 11:22:34 -05:00
2023-07-29 12:40:49 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-10-07 15:56:48 -04:00
2023-01-08 11:22:34 -05:00
2023-01-08 11:22:34 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-10-07 15:56:48 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-10-07 15:56:48 -04:00

👋 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
Repo for youtube-dl
Readme 60 KiB
Languages
Shell 90.4%
Dockerfile 9.6%