systems:docker_main:install_docker_containers:install_jacket
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
systems:docker_main:install_docker_containers:install_jacket [2021/07/16 08:12] – peter | systems: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, | ||
- | * 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 / | ||
- | mkdir / | ||
- | mkdir / | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE:** The **downloads** directory will be used by other services too, so not within the **jackett** directory. | ||
- | </ | ||
- | |||
- | |||
- | ---- | ||
- | |||
- | ===== Determine the UID and GID ===== | ||
- | |||
- | On the Ubuntu VM Host: | ||
- | |||
- | <code bash> | ||
- | id peter | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | uid=1000(peter) gid=1000(peter) groups=1000(peter)... | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | |||
- | * In this case 1000. | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Install Sonarr ===== | ||
- | |||
- | In Portainer: | ||
- | |||
- | * Select **Stack**. | ||
- | * Click **Add Stack**. | ||
- | * Name: **Sonarr**. | ||
- | * Web editor: <file bash docker-compose> | ||
- | |||
- | |||
- | |||
- | |||
- | <file bash docker-compose> | ||
- | --- | ||
- | version: " | ||
- | services: | ||
- | jackett: | ||
- | image: ghcr.io/ | ||
- | container_name: | ||
- | environment: | ||
- | - PUID=1000 | ||
- | - PGID=1000 | ||
- | - TZ=Europe/ | ||
- | - AUTO_UPDATE=true #optional | ||
- | # - RUN_OPTS=< | ||
- | volumes: | ||
- | - / | ||
- | - / | ||
- | ports: | ||
- | - 9117:9117 | ||
- | restart: unless-stopped | ||
- | </ | ||
- | |||
systems/docker_main/install_docker_containers/install_jacket.1626423128.txt.gz · Last modified: 2021/07/16 08:12 by peter