SickRage - Automatic Video Library Manager for TV Shows.
1.3K
This is a Docker image for SickRage - the Internet PVR for your TV shows.
The Docker image currently supports:
root)To run the SickRage container you can execute:
docker run --name sickrage -v <datadir path>:/datadir -v <media path>:/media -p 8081:8081 sickrage/sickrage
Open a browser and point it to http://my-docker-host:8081
You can also run the SickRage container by using Docker Compose.
If you've cloned the git repository you can build and run the Docker container locally (without the Docker Hub):
docker-compose up -d
If you want to use the Docker Hub image within your existing Docker Compose file you can use the following YAML snippet:
sickrage:
image: "sickrage/sickrage"
container_name: "sickrage"
volumes:
- "<datadir path>:/datadir"
- "<media path>:/media"
ports:
- "8081:8081"
restart: always
Please mount the following volumes inside your SickRage container:
/datadir: Holds all the SickRage data files (e.g. config, postProcessing)/media: Directory for TV showsBy default the SickRage configuration is located on /datadir/config.ini.
If you want to change this you've to set the CONFIG environment variable, for example:
CONFIG=/datadir/sickrage.ini
By default SickRage runs with user ID and group ID 666.
If you want to run SickRage with different ID's you've to set the SICKRAGE_UID and/or SICKRAGE_GID environment variables, for example:
SICKRAGE_UID=1234
SICKRAGE_GID=1234
Content type
Image
Digest
Size
177 MB
Last updated
about 7 years ago
docker pull dbarton/sickrage