Last active 1720359082

Install Emby using Portainer

abdul revised this gist 1720359082. Go to revision

1 file changed, 21 insertions

Emby(file created)

@@ -0,0 +1,21 @@
1 + version: "3.9"
2 + services:
3 + emby:
4 + image: linuxserver/emby:latest
5 + container_name: Emby
6 + mem_limit: 8g
7 + cpu_shares: 1024
8 + security_opt:
9 + - no-new-privileges:true
10 + ports:
11 + - 8096:8096
12 + - 8920:8920
13 + environment:
14 + PUID: 1026
15 + PGID: 100
16 + TZ: Europa/Stockholm
17 + volumes:
18 + - /volume1/docker/emby:/config # Creat the folder before you deploy the stack
19 + - /volume1/plex/media/TV-series:/data/tvshows
20 + - /volume1/plex/media/movies:/data/movies # I was trying Emby so I use my Plex library
21 +
Newer Older