From 573f5312779127074387794392bdd67b7741cc56 Mon Sep 17 00:00:00 2001 From: Luc Timmerman <48736891+Luctia@users.noreply.github.com> Date: Mon, 11 Jul 2022 11:13:59 +0200 Subject: [PATCH 1/4] Create LICENSE.md --- LICENSE.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..a990821 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Luc Timmerman + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From db348666d1219f4b11178566d66f31412bab85ca Mon Sep 17 00:00:00 2001 From: Zaeem Akhtar Date: Sat, 16 Jul 2022 03:11:30 +0500 Subject: [PATCH 2/4] Added support for Jackett (#10) * Added support for Jackett. --- README.md | 1 + docker-compose.yml | 14 ++++++++++++++ setup.sh | 5 ++++- 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4118c3a..5ceb5a9 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ crash*. It doesn't necessarily mean it will run well on your system ;) It featur where to download this. **Note**: when adding an indexer, please do not set the "seed ratio" to less than 1. Less than 1 means that you upload less than you download. Not only is this unfriendly towards your fellow users, but it can also get you banned from certain indexers. +- [Jackett](https://github.com/Jackett/Jackett) is an alternative to Prowlarr. - [qBittorrent](https://www.qbittorrent.org/) can download torrents and provides a bunch more features for management. - [PleX](https://www.plex.tv/) is a mediaserver. Using this, you get access to a Netflix-like diff --git a/docker-compose.yml b/docker-compose.yml index 6a0e768..8cd9cdc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -136,6 +136,20 @@ services: - 9696:9696 restart: unless-stopped + jackett: + image: lscr.io/linuxserver/jackett:latest + container_name: jackett + environment: + - PUID=13006 + - PGID=13000 + - UMASK=002 + - TZ=${TIMEZONE} + volumes: + - ${ROOT_DIR}/docker/jackett-config:/config + ports: + - 9117:9117 + restart: unless-stopped + qbittorrent: image: lscr.io/linuxserver/qbittorrent:latest container_name: qbittorrent diff --git a/setup.sh b/setup.sh index 9cc8ca7..8b449eb 100755 --- a/setup.sh +++ b/setup.sh @@ -8,6 +8,7 @@ sudo useradd readarr -u 13004 sudo useradd mylar -u 13005 sudo useradd prowlarr -u 13006 sudo useradd qbittorrent -u 13007 +sudo useradd jackett -u 13008 sudo groupadd mediacenter -g 13000 sudo usermod -a -G mediacenter sonarr sudo usermod -a -G mediacenter radarr @@ -16,9 +17,10 @@ sudo usermod -a -G mediacenter readarr sudo usermod -a -G mediacenter mylar sudo usermod -a -G mediacenter prowlarr sudo usermod -a -G mediacenter qbittorrent +sudo usermod -a -G mediacenter jackett # Make directories -sudo mkdir -pv docker/{sonarr,radarr,lidarr,readarr,mylar,prowlarr,qbittorrent}-config +sudo mkdir -pv docker/{sonarr,radarr,lidarr,readarr,mylar,prowlarr,qbittorrent,jackett}-config sudo mkdir -pv data/{torrents,media}/{tv,movies,music,books,comics} # Set permissions @@ -31,5 +33,6 @@ sudo chown -R readarr:mediacenter docker/readarr-config sudo chown -R mylar:mediacenter docker/mylar-config sudo chown -R prowlarr:mediacenter docker/prowlarr-config sudo chown -R qbittorrent:mediacenter docker/qbittorrent-config +sudo chown -R jackett:mediacenter docker/jackett-config echo "UID=$(id -u)" >> .env From a556dda9e699ea734b9f387bb5e35f6ce9203ee2 Mon Sep 17 00:00:00 2001 From: Luc Timmerman <48736891+Luctia@users.noreply.github.com> Date: Wed, 17 Aug 2022 12:36:48 +0200 Subject: [PATCH 3/4] Fixed Jackett UID --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 8cd9cdc..b09ca86 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -140,7 +140,7 @@ services: image: lscr.io/linuxserver/jackett:latest container_name: jackett environment: - - PUID=13006 + - PUID=13008 - PGID=13000 - UMASK=002 - TZ=${TIMEZONE} From 92f235bacfcf7904c433e6dc145bd6e61130bf2d Mon Sep 17 00:00:00 2001 From: Luc Timmerman <48736891+Luctia@users.noreply.github.com> Date: Wed, 19 Oct 2022 10:22:16 +0200 Subject: [PATCH 4/4] Further elaboration in README --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 5ceb5a9..da73630 100644 --- a/README.md +++ b/README.md @@ -68,3 +68,8 @@ possible to interact with this database after creation, I'd rather not touch the that difficult to set them yourself, and quite difficult to do it automatically. For other containers, configuration files are automatically generated, so these are more easily edited, but I currently don't believe this is worth the effort. + +On top of the above, connecting the containers above would mean setting a password and creating an +API key for all of them. This would lead to everyone using Ezarr having the same API key and user/ +password combination. Personally, I'd rather trust users to figure this out on their own rather +than trusting them to change these passwords and keys.