linuxserver/plex-meta-manager.

162,812 52 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/plex-meta-manager
Build Time 23 Apr 2024 09:32:28
Base Image ghcr.io/linuxserver/baseimage-alpine:3.15
Category Media Management
Synchronised Yes
Stable Yes
Deprecated No

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 1.21.1 23 Apr 2024 at 09:32:13

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  plex-meta-manager:
    image: linuxserver/plex-meta-manager:1.21.1
    container_name: plex-meta-manager
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Specify a timezone to use
      - PUID=1000 # UID to run the application as
      - PMM_TIME=03:00 # Comma-separated list of times to run. Format: HH:MM
      - PMM_TEST=False # Run in debug mode with only collections that have `test: true`.
      - PMM_RUN=False # Run without using the scheduler
      - PMM_NO_MISSING=False # Run without any of the missing movie/show functions.
      - PMM_CONFIG=/config/config.yml # Specify a custom config file to use.
      - PGID=1000 # GID to run the application as
    volumes:
      - /host/path/to/config:/config # Local path for plex-meta-manager config files.

CLI

docker create \
  --name=plex-meta-manager \
  -e TZ=Europe/London `# Specify a timezone to use` \
  -e PUID=1000 `# UID to run the application as` \
  -e PMM_TIME=03:00 `# Comma-separated list of times to run. Format: HH:MM` \
  -e PMM_TEST=False `# Run in debug mode with only collections that have `test: true`.` \
  -e PMM_RUN=False `# Run without using the scheduler` \
  -e PMM_NO_MISSING=False `# Run without any of the missing movie/show functions.` \
  -e PMM_CONFIG=/config/config.yml `# Specify a custom config file to use.` \
  -e PGID=1000 `# GID to run the application as` \
  -v /host/path/to/config:/config `# Local path for plex-meta-manager config files.` \
  --restart unless-stopped \
  linuxserver/plex-meta-manager:1.21.1