mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-18 15:25:41 +00:00
28 lines
990 B
YAML
28 lines
990 B
YAML
# [SickGear](https://github.com/sickgear/sickgear) provides management of TV
|
|
# shows and/or Anime, it detects new episodes, links downloader apps, and more..
|
|
# For more information on SickGear visit their website and check it out:
|
|
# https://github.com/SickGear/SickGear
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
sickgear:
|
|
image: ghcr.io/linuxserver/sickgear
|
|
container_name: sickgear
|
|
environment:
|
|
# for UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
volumes:
|
|
# this will store any uploaded data on the docker host
|
|
- ${BASEDIR:-/volume1/docker}/sickgear/config:/config
|
|
# where you store your tv shows
|
|
- ${BASEDIR:-/volume1/docker}/sickgear/tv:/tv
|
|
# your downloads folder for post processing (must not be download in progress)
|
|
- ${BASEDIR:-/volume1/docker}/sickgear/downloads:/downloads
|
|
ports:
|
|
# will map the container's port 8081 to port 8081 on the host
|
|
- 8081:8081
|
|
restart: unless-stopped
|