[add] emby
This commit is contained in:
		
							parent
							
								
									4eafe24fb6
								
							
						
					
					
						commit
						96ec3d3505
					
				
					 5 changed files with 40 additions and 2 deletions
				
			
		| 
						 | 
					@ -52,7 +52,7 @@
 | 
				
			||||||
		abort
 | 
							abort
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
# orlop
 | 
					# orlop ------------------------------------
 | 
				
			||||||
*.orlop.duckdns.org {
 | 
					*.orlop.duckdns.org {
 | 
				
			||||||
   import duckdns
 | 
					   import duckdns
 | 
				
			||||||
    @jellyfin host jellyfin.orlop.duckdns.org
 | 
					    @jellyfin host jellyfin.orlop.duckdns.org
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										8
									
								
								emby/cache/.gitignore
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								emby/cache/.gitignore
									
										
									
									
										vendored
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,8 @@
 | 
				
			||||||
 | 
					# .gitignore sample
 | 
				
			||||||
 | 
					###################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Ignore all files in this dir...
 | 
				
			||||||
 | 
					*
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# ... except for this one.
 | 
				
			||||||
 | 
					!.gitignore
 | 
				
			||||||
							
								
								
									
										8
									
								
								emby/config/.gitignore
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								emby/config/.gitignore
									
										
									
									
										vendored
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,8 @@
 | 
				
			||||||
 | 
					# .gitignore sample
 | 
				
			||||||
 | 
					###################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Ignore all files in this dir...
 | 
				
			||||||
 | 
					*
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# ... except for this one.
 | 
				
			||||||
 | 
					!.gitignore
 | 
				
			||||||
							
								
								
									
										23
									
								
								emby/docker-compose.yml
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								emby/docker-compose.yml
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,23 @@
 | 
				
			||||||
 | 
					version: "2.3"
 | 
				
			||||||
 | 
					services:
 | 
				
			||||||
 | 
					  emby:
 | 
				
			||||||
 | 
					    image: emby/embyserver
 | 
				
			||||||
 | 
					    container_name: embyserver
 | 
				
			||||||
 | 
					    runtime: nvidia # Expose NVIDIA GPUs
 | 
				
			||||||
 | 
					    network_mode: host # Enable DLNA and Wake-on-Lan
 | 
				
			||||||
 | 
					    environment:
 | 
				
			||||||
 | 
					      - UID=1000 # The UID to run emby as (default: 2)
 | 
				
			||||||
 | 
					      - GID=100 # The GID to run emby as (default 2)
 | 
				
			||||||
 | 
					      - GIDLIST=100 # A comma-separated list of additional GIDs to run emby as (default: 2)
 | 
				
			||||||
 | 
					    volumes:
 | 
				
			||||||
 | 
					        - ./config:/config
 | 
				
			||||||
 | 
					        - ./cache:/cache
 | 
				
			||||||
 | 
					        -  /srv/dev-disk-by-uuid-45e2e732-9e00-4a82-a7cc-9c743e033671/datastore/music:/music
 | 
				
			||||||
 | 
					        -  /srv/dev-disk-by-uuid-45e2e732-9e00-4a82-a7cc-9c743e033671/datastore/PicasaStarter/pictures/Pictures:/photos
 | 
				
			||||||
 | 
					    ports:
 | 
				
			||||||
 | 
					      - 8097:8096 # HTTP port
 | 
				
			||||||
 | 
					      - 8920:8920 # HTTPS port
 | 
				
			||||||
 | 
					    devices:
 | 
				
			||||||
 | 
					      - /dev/dri:/dev/dri # VAAPI/NVDEC/NVENC render nodes
 | 
				
			||||||
 | 
					      - /dev/vchiq:/dev/vchiq # MMAL/OMX on Raspberry Pi
 | 
				
			||||||
 | 
					    restart: unless-stopped
 | 
				
			||||||
| 
						 | 
					@ -5,7 +5,6 @@ services:
 | 
				
			||||||
    gerbera:
 | 
					    gerbera:
 | 
				
			||||||
        image: gerbera/gerbera:1.9.2
 | 
					        image: gerbera/gerbera:1.9.2
 | 
				
			||||||
        container_name: gerbera
 | 
					        container_name: gerbera
 | 
				
			||||||
        restart: always
 | 
					 | 
				
			||||||
        volumes:
 | 
					        volumes:
 | 
				
			||||||
            - "/mnt/media/pictures:/media/pictures:ro"
 | 
					            - "/mnt/media/pictures:/media/pictures:ro"
 | 
				
			||||||
            - "./videos:/media/videos:ro"
 | 
					            - "./videos:/media/videos:ro"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue