mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-01-23 20:19:11 +00:00
23 lines
363 B
Markdown
23 lines
363 B
Markdown
|
# Metube
|
||
|
|
||
|
- [Github repo](https://github.com/Tzahi12345/YoutubeDL-Material)
|
||
|
|
||
|
![Screenshot](youtubedl-material.png)
|
||
|
|
||
|
## docker-compose.yml
|
||
|
```yml
|
||
|
---
|
||
|
|
||
|
version: "3"
|
||
|
services:
|
||
|
metube:
|
||
|
image: alexta69/metube
|
||
|
container_name: metube
|
||
|
restart: unless-stopped
|
||
|
user: "1001:1001"
|
||
|
ports:
|
||
|
- "8081:8081"
|
||
|
volumes:
|
||
|
- ./downloads:/downloads
|
||
|
```
|