Switch from Emby to Jellyfin
Merge remote-tracking branch 'origin/jellyfin'
This commit is contained in:
@ -1,21 +0,0 @@
|
||||
version: "2.3"
|
||||
|
||||
services:
|
||||
emby:
|
||||
image: linuxserver/emby:4.4.3.0-ls45
|
||||
container_name: emby
|
||||
environment:
|
||||
- PUID={{ docker_user.id }}
|
||||
- PGID={{ docker_user.id }}
|
||||
- TZ=Europe/London
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- /mnt/media/TV:/mnt/TV
|
||||
- /mnt/media/Movies:/mnt/Movies
|
||||
ports:
|
||||
- 8096:8096
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.emby.rule=Host(`media.jakehoward.tech`)
|
||||
- traefik.http.routers.emby.tls.certresolver=le
|
@ -0,0 +1,25 @@
|
||||
version: "2.3"
|
||||
|
||||
services:
|
||||
jellyfin:
|
||||
image: linuxserver/jellyfin:v10.5.5-ls58
|
||||
container_name: jellyfin
|
||||
environment:
|
||||
- PUID={{ docker_user.id }}
|
||||
- PGID={{ docker_user.id }}
|
||||
- TZ=Europe/London
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- /mnt/media/TV:/mnt/TV
|
||||
- /mnt/media/Movies:/mnt/Movies
|
||||
tmpfs:
|
||||
- /config/cache
|
||||
- /config/log
|
||||
restart: unless-stopped
|
||||
devices:
|
||||
- /dev/dri/card0:/dev/dri/card0
|
||||
- /dev/dri/renderD128:/dev/dri/renderD128
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.jellyfin.rule=Host(`media.jakehoward.tech`)
|
||||
- traefik.http.routers.jellyfin.tls.certresolver=le
|
Reference in New Issue
Block a user