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.

29 lines
918 B
YAML

# [Medusa](https://pymedusa.com/) is an automatic Video Library Manager for TV
# Shows. It watches for new episodes of your favorite shows, and when they are
# posted it does its magic.
---
version: "2.1"
services:
medusa:
image: ghcr.io/linuxserver/medusa
container_name: medusa
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}
volumes:
# Persistent config files
- ${BASEDIR:-/volume1/docker}/medusa/config:/config
# Download location
- ${BASEDIR:-/volume1/docker}/medusa/downloads:/downloads
# TV Shows location
- ${BASEDIR:-/volume1/docker}/medusa/tv:/tv
ports:
# The port for the Medusa webui
- 8081:8081
restart: unless-stopped