mirror of
				https://github.com/tborychowski/self-hosted-cookbook.git
				synced 2025-11-04 07:37:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			366 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			366 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
# Metube
 | 
						|
 | 
						|
- [Github repo](https://github.com/Tzahi12345/YoutubeDL-Material)
 | 
						|
 | 
						|

 | 
						|
 | 
						|
## 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
 | 
						|
```
 |