Last active 1720359082

Install Emby using Portainer

Emby Raw
1version: "3.9"
2services:
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