1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 12:15:40 +01:00
svtplay-dl/docs/README.docker.md

23 lines
481 B
Markdown
Raw Normal View History

# svtplay-dl
container version of the script.
# usage
```sh
docker run -it --rm -u $(id -u):$(id -g) -v "$(pwd):/data" spaam/svtplay-dl <args>
```
or create an alias:
##### bash (~/.bashrc)
```
alias svtplay-dl='docker run -it --rm -u $(id -u):$(id -g) -v "$(pwd):/data" spaam/svtplay-dl'
```
##### zsh (~/.zshrc)
```
alias svtplay-dl='docker run -it --rm -u $(id -u):$(id -g) -v "$(pwd):/data" spaam/svtplay-dl'
```
# build example
```sh
docker build -t svtplay-dl .
```