You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.4 KiB
YAML

# [Plex-meta-manager](https://github.com/meisnate12/Plex-Meta-Manager) is a
# Python 3 script that can be continuously run using YAML configuration files to
# update on a schedule the metadata of the movies, shows, and collections in
# your libraries as well as automatically build collections based on various
# methods all detailed in the wiki.
---
version: "2.1"
services:
plex-meta-manager:
image: ghcr.io/linuxserver/plex-meta-manager
container_name: plex-meta-manager
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
# Specify a custom config file to use.
- PMM_CONFIG=/config/config.yml # optional
# Comma-separated list of times to update each day. Format: `HH:MM`.
- PMM_TIME=03:00 # optional
# Set to `True` to run without the scheduler.
- PMM_RUN=False # optional
# Set to `True` to run in debug mode with only collections that have `test: true`.
- PMM_TEST=False # optional
# Set to `True` to run without any of the missing movie/show functions.
- PMM_NO_MISSING=False # optional
volumes:
# Persistent config files
- ${BASEDIR:-/volume1/docker}/plex-meta-manager/config:/config
restart: unless-stopped