User Tools

Site Tools


systems:docker_main:install_docker_containers:install_jacket

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
systems:docker_main:install_docker_containers:install_jacket [2021/07/16 08:12] petersystems:docker_main:install_docker_containers:install_jacket [2021/07/16 08:12] (current) – removed peter
Line 1: Line 1:
-====== Systems - Docker Main - Install Docker Containers - Install Jacket ====== 
- 
-Jackett works as a proxy server. 
- 
-  * It translates queries from apps (Sonarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. 
-  * This allows for getting recent uploads (like RSS) and performing searches. 
-  * Jackett is a single repository of maintained indexer scraping & translation logic - removing the burden from other apps. 
- 
----- 
- 
-===== Create the Jackett Directories ===== 
- 
-Jackett will store its configuration data in a directory on the Host VM. 
- 
-On the Ubuntu VM Host, create a directory for this config data. 
- 
-<code bash> 
-mkdir /home/peter/jackett 
-mkdir /home/peter/jackett/config 
-mkdir /home/peter/jackett/downloads 
-</code> 
- 
-<WRAP info> 
-**NOTE:** The **downloads** directory will be used by other services too, so not within the **jackett** directory. 
-</WRAP> 
- 
- 
----- 
- 
-===== Determine the UID and GID ===== 
- 
-On the Ubuntu VM Host: 
- 
-<code bash> 
-id peter 
-</code> 
- 
-returns: 
- 
-<code bash> 
-uid=1000(peter) gid=1000(peter) groups=1000(peter)... 
-</code> 
- 
-<WRAP info> 
-**NOTE:**  Take a note of the UID and GID numbers. 
- 
-  * In this case 1000. 
-</WRAP> 
- 
----- 
- 
-===== Install Sonarr ===== 
- 
-In Portainer: 
- 
-  * Select **Stack**. 
-  * Click **Add Stack**. 
-  * Name:  **Sonarr**. 
-  * Web editor: <file bash docker-compose> 
- 
- 
- 
- 
-<file bash docker-compose> 
---- 
-version: "2.1" 
-services: 
-  jackett: 
-    image: ghcr.io/linuxserver/jackett 
-    container_name: jackett 
-    environment: 
-      - PUID=1000 
-      - PGID=1000 
-      - TZ=Europe/Jersey 
-      - AUTO_UPDATE=true #optional 
-#      - RUN_OPTS=<run options here> #optional 
-    volumes: 
-      - /home/peter/jackett/config:/config 
-      - /home/peter/jackett/downloads:/downloads 
-    ports: 
-      - 9117:9117 
-    restart: unless-stopped 
-</file> 
- 
  
systems/docker_main/install_docker_containers/install_jacket.1626423128.txt.gz · Last modified: 2021/07/16 08:12 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki