self-hosted-cookbook/apps/media/youtubedl-web.md

22 lines
363 B
Markdown
Raw Normal View History

2021-01-25 16:02:35 +00:00
# YoutubeDL-web
- [Github repo](https://github.com/franhp/youtubedl-web)
![Screenshot](youtubedl-web.png)
## docker-compose.yml
```yml
---
version: '3'
services:
youtubedl-web:
image: franhp/youtubedl-web:latest
container_name: youtubedl-web
restart: unless-stopped
ports:
- "5000:5000"
volumes:
- ./downloads:/downloads
```