├── .DEREK.yml ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── Dockerfile ├── README.md ├── entry.sh └── stack.yml /.DEREK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faas-and-furious/youtube-dl/HEAD/.DEREK.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faas-and-furious/youtube-dl/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | template 2 | build 3 | *.mov 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faas-and-furious/youtube-dl/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faas-and-furious/youtube-dl/HEAD/README.md -------------------------------------------------------------------------------- /entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faas-and-furious/youtube-dl/HEAD/entry.sh -------------------------------------------------------------------------------- /stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faas-and-furious/youtube-dl/HEAD/stack.yml --------------------------------------------------------------------------------