2021-04-10 10:16:29 +00:00
|
|
|
# Sickchill 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:
|
|
|
|
sickchill:
|
|
|
|
image: ghcr.io/linuxserver/sickchill
|
|
|
|
container_name: sickchill
|
|
|
|
environment:
|
|
|
|
# for GroupID
|
|
|
|
- PUID=${PUID:-1024}
|
|
|
|
# for UserID
|
|
|
|
- PGID=${PGID:-100}
|
|
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
2021-04-13 00:58:58 +00:00
|
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
2021-04-10 10:16:29 +00:00
|
|
|
volumes:
|
|
|
|
# this will store config on the docker host
|
|
|
|
- ${BASEDIR:-/volume1/docker}/sickchill/config:/config
|
|
|
|
# this will store any downloaded data on the docker host
|
|
|
|
- ${BASEDIR:-/volume1/docker}/sickchill/downloads:/downloads
|
|
|
|
# this will allow sickchill to view what you already have
|
|
|
|
- ${BASEDIR:-/volume1/docker}/sickchill/tv:/tv
|
|
|
|
ports:
|
|
|
|
# will map the container's port 8081 to port 8081 on the host
|
|
|
|
- 8081:8081
|
|
|
|
restart: unless-stopped
|