From 9468c2970d3849275863bcbcbc2f28a48ed62311 Mon Sep 17 00:00:00 2001 From: Donny <90471623+DonMcD@users.noreply.github.com> Date: Fri, 16 Feb 2024 21:21:45 -0700 Subject: [PATCH] Added Plex-Meta-Manager --- docker-compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index dfd9d3e..7e77b56 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -302,3 +302,18 @@ services: #- ${UNRAID_SHARE}/downloads:/data # OPTIONAL!!! this is dataDir path (for data-based matching) - will need to replicate your torrent client's container path (like Arr's do) command: daemon # this enables the search mode, change to daemon to specifically run the daemon + #Plex Meta Manager - used to create collections in plex. Example: "Most Popular Movies This Week", "Best of horror", etc. + plex-meta-manager: + image: meisnate12/plex-meta-manager + container_name: plex-meta-manager + environment: + - TZ=${TZ} + #- PMM_OVERLAYS_ONLY=true #Tells PMM to run overlays only + - PMM_CONFIG=/config/config.yml + - PMM_RUN=true #Runs PMM Immediately + #- PMM_RUN_LIBRARIES=Movies #Tells PMM to process only a library called "Movies" + volumes: + - ${BASE_PATH}/plex-meta-manager/config:/config + + restart: unless-stopped +