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