Added Plex-Meta-Manager

This commit is contained in:
Donny 2024-02-16 21:21:45 -07:00 committed by GitHub
parent 1afd9dc01f
commit 9468c2970d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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) #- ${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 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