Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sashkab/docker-youtube-dl

Youtube-dl in a docker
https://github.com/sashkab/docker-youtube-dl

Last synced: about 1 month ago
JSON representation

Youtube-dl in a docker

Awesome Lists containing this project

README

        

# youtube-dl in a docker

![Build youtube-dl image](https://github.com/sashkab/docker-youtube-dl/workflows/Build%20youtube-dl%20image/badge.svg)

## Pull

```sh
docker pull ghcr.io/sashkab/docker-youtube-dl/docker-youtube-dl:latest
```

## Create alias

Add alias into your `.bash_profile` or `.zshrc` files:

```sh
alias yt='docker run --rm -u $(id -u):$(id -g) -v $PWD:/downloads -t ghcr.io/sashkab/docker-youtube-dl/docker-youtube-dl:latest'
```

## Automatically update via crontab

Add a schedule to update via crontab:

```sh
0 1 * * 0 docker pull ghcr.io/sashkab/docker-youtube-dl/docker-youtube-dl:latest
```