Sickchill

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.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: "3.3"
services:
  sickchill:
    container_name: sickchill
    image: sickchill/sickchill
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/New_York
      - USERDIR=/home/<username>/sickchill
      - SHOWS_AND_DOWNLOADS_ROOT=<path/to/shows/and/downloads/drive>
    volumes:
      - $USERDIR/sickchill:/config
      - $USERDIR/sickchill:/data
      - $SHOWS_AND_DOWNLOADS_ROOT:$SHOWS_AND_DOWNLOADS_ROOT
    ports:
      - 8081:8081
    network_mode: host
    restart: unless-stopped

Resources

Website: https://sickchill.github.io/

GitHub: https://github.com/SickChill/sickchill

Docker Hub: https://hub.docker.com/r/sickchill/sickchill

Configuration: https://github.com/SickChill/SickChill/wiki/Docker