Sign inSign up

orbnedron/jackett

By orbnedron

Updated about 4 years ago

DEPRECATED: Docker image for Jackett

Image
1

50K+

orbnedron/jackett repository overview

DEPRECATED: This docker image is not maintained any more and will not retrieve anu updates. For a similar docker image I suggest to use images from linuxserver.io

Jackett docker image

See the source for this image at https://github.com/orbnedron/jackett-docker

Important notice

Versions of this docker image published after 2020-06-15 does not run Jackett as root anymore, this might cause permission errors.

About

This is a Docker image for Jackett - implements the Torznab (with nZEDb category numbering) and TorrentPotato APIs

Run

Run via Docker CLI client

To run it (with image on docker hub) :

docker run -d -p 9117:9117 \
    -v <download path>:/media/downloads \
    -v <config path>:/config \
    -v /etc/localtime:/etc/localtime:ro \
    -e JACKETT_USER_ID=`id -u $USER` -e JACKETT_GROUP_ID=`id -g $USER`
    --restart unless-stopped \
    --name jackett \
    orbnedron/jackett

Open a browser and point it to http://my-docker-host:9117

Run via Docker Compose

You can also run the Jackett 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:

version: "3.8"
services:
  jackett:
    image: "orbnedron/jackett"
    container_name: "jackett"
    volumes:
        - './data/config:/config'
        - './data/downloads:/media/downloads'
    ports:
        - 9117:9117
    restart: 'unless-stopped'
#    environment:
#      - JACKETT_USER_ID=1000
#      - JACKETT_GROUP_ID=1000

Configuration

Volumes

Please mount the following volumes inside your Jackett container:

  • /media/downloads: Directory for downloaded files (e.g. manually downloaded files)
  • /config: Directory for configuration files

Tag summary

Content type

Image

Digest

sha256:886619a8d

Size

118.5 MB

Last updated

about 4 years ago

docker pull orbnedron/jackett