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 +