mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-01-23 12:14:17 +00:00
22 lines
363 B
Markdown
22 lines
363 B
Markdown
# 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
|
|
```
|