docker-bits/lsio/plex-meta-manager/docker-compose.yaml

34 lines
1.4 KiB
YAML
Raw Normal View History

2022-02-01 00:36:41 +00:00
# [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
2022-04-02 00:45:58 +00:00
- PUID=${PUID:-1024}
# for GroupID
2022-02-01 00:36:41 +00:00
- PGID=${PGID:-100}
2023-02-12 01:01:09 +00:00
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
2022-02-01 00:36:41 +00:00
- 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:
# Local path for plex-meta-manager config files.
- ${BASEDIR:-/volume1/docker}/plex-meta-manager/config:/config
restart: unless-stopped