From 21a4b1e2d232033c19375d22dd92af5862a0c483 Mon Sep 17 00:00:00 2001 From: xavier Date: Tue, 23 Jul 2024 22:08:40 +0200 Subject: [PATCH] simplify new plex instance --- plex_music/docker-compose.yml | 24 +++++------------------- 1 file changed, 5 insertions(+), 19 deletions(-) diff --git a/plex_music/docker-compose.yml b/plex_music/docker-compose.yml index 81b7c1e..ae73fbd 100644 --- a/plex_music/docker-compose.yml +++ b/plex_music/docker-compose.yml @@ -4,28 +4,14 @@ 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 + - ${SD_STORAGE}/transcode/plex_music:/transcode + ports: + - 32402:32400 environment: - - PUID=${USER} + - PUID=${THE_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) \ No newline at end of file + - TZ=Europe/Madrid \ No newline at end of file