novamaxx

Kometa Docker Compose File

Jan 5th, 2025 (edited)
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.71 KB | Movies | 0 0
  1. version: "3.8"
  2. services:
  3.   kometa:
  4.     image: kometateam/kometa
  5.     container_name: kometa
  6.     volumes:
  7.      - /volume1/docker/kometa/config:/config:rw
  8.     environment:
  9.      - PUID=1026
  10.       - PGID=100
  11.       - TZ=Europe/Budapest
  12.       - KOMETA_CONFIG=/config/config.yml # Specify a custom config file to use.
  13.       - KOMETA_TIME=03:00 # Comma-separated list of times to update each day, HH:MM
  14.       - KOMETA_RUN=False #True # Set to True to run without the scheduler.
  15.       - KOMETA_TEST=False #True # Set to True to run in debug mode with only collections that have test true.
  16.       - KOMETA_NO_MISSING=False # Set to True to run without any of the missing movie/show functions.
  17.     restart: unless-stopped
Add Comment
Please, Sign In to add comment