Skip to content

Latest commit

 

History

History

youtube-dl

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

youtube-dl

alpine:edge-based dockerization of youtube-dl, the command-line media download utility with support for about 1000 sites

The source code for this image is hosted on GitHub in the backplane/conex repo.

Usage

Interactive

The following shell function can assist in running this image interactively:

youtubedl() {
  docker run \
    --rm \
    --interactive \
    --tty \
    --volume "$(pwd):/work" \
    "backplane/youtube-dl" \
    "$@"
}