add plex music
This commit is contained in:
parent
e9071e4259
commit
9d9eca5a0e
|
@ -16,6 +16,7 @@ ownServices/ArrModificationCapturer
|
||||||
ownServices/SonarrQueueFixer/config
|
ownServices/SonarrQueueFixer/config
|
||||||
overseerr/config
|
overseerr/config
|
||||||
plex/config
|
plex/config
|
||||||
|
plex_music/config
|
||||||
prowlarr/config
|
prowlarr/config
|
||||||
qbit/bk
|
qbit/bk
|
||||||
qbit/config
|
qbit/config
|
||||||
|
@ -24,8 +25,10 @@ radarr/config
|
||||||
sonarr/config
|
sonarr/config
|
||||||
tautulli/config
|
tautulli/config
|
||||||
|
|
||||||
|
#envs with host sensitive info
|
||||||
ownServices/SonarrQueueFixer/.env
|
ownServices/SonarrQueueFixer/.env
|
||||||
plex/.env
|
plex/.env
|
||||||
|
plex_music/.env
|
||||||
plex/old_env
|
plex/old_env
|
||||||
radarr/.env
|
radarr/.env
|
||||||
sonarr/.env
|
sonarr/.env
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
---
|
||||||
|
version: "2.1"
|
||||||
|
services:
|
||||||
|
plex:
|
||||||
|
image: lscr.io/linuxserver/plex
|
||||||
|
container_name: music_plex
|
||||||
|
hostname: plex
|
||||||
|
network_mode: host
|
||||||
|
mem_limit: 2g
|
||||||
|
cpu_shares: 512
|
||||||
|
security_opt:
|
||||||
|
- no-new-privileges:true
|
||||||
|
healthcheck:
|
||||||
|
test: wget --no-verbose --tries=1 --spider ${HEALTHCHECK_URL}
|
||||||
|
volumes:
|
||||||
|
- ./config:/config
|
||||||
|
- ${HOST_DATA_FOLDER}/media:/data/media:rw
|
||||||
|
- ${SD_STORAGE}/transcode/plex:/transcode
|
||||||
|
devices:
|
||||||
|
- /dev/dri/renderD128:/dev/dri/renderD128
|
||||||
|
- /dev/dri/card0:/dev/dri/card0
|
||||||
|
# tmpfs: #this is to use the RAM as location for the transcoding buffer. I've disabled it because of possible OutOfMemory errors. If in the future I have more RAM then will be a nice configuration
|
||||||
|
# - /transcode
|
||||||
|
environment:
|
||||||
|
- PUID=${USER}
|
||||||
|
- PGID=${GROUP}
|
||||||
|
- VERSION=public
|
||||||
|
- TZ=Europe/Madrid
|
||||||
|
restart: on-failure:5
|
||||||
|
#labels:
|
||||||
|
# - "com.centurylinklabs.watchtower.enable=false" #this is to not let the "dockers-version-auto-upgrader" restart plex at any time (specially when users are streaming)
|
Loading…
Reference in New Issue