From ceb8b314ac55e39ec9ca55f557e6a2c844a2ef5b Mon Sep 17 00:00:00 2001 From: Saswat Padhi Date: Sat, 2 Jul 2022 20:16:57 +0000 Subject: [PATCH] upgrade to 0.20.1263 --- Dockerfile | 2 +- README.md | 7 ++++--- entrypoint-scripts/10.setup-volume.sh | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index e9cd311..eaaeb7c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ ENV JACKETT_ARCH=ARM32 FROM base-${TARGETARCH}${TARGETVARIANT} -ARG JACKETT_VERSION=0.20.1027 +ARG JACKETT_VERSION=0.20.1263 ADD "https://github.com/Jackett/Jackett/releases/download/v${JACKETT_VERSION}/Jackett.Binaries.Linux${JACKETT_ARCH}.tar.gz" \ diff --git a/README.md b/README.md index 67c00ee..cbbbbf4 100644 --- a/README.md +++ b/README.md @@ -17,11 +17,12 @@ A multiarch [Jackett] Docker image, based on [Debian Linux]. docker run -p 9117:9117 -it padhihomelab/jackett ``` -Runs `Jackett` with WebUI served on port 9117. +Runs [Jackett] with WebUI served on port 9117.
To run it in background, use the `--detach` flag. Typically, you shouldn't need to directly access the files written by Jackett to disk, but it is still a good idea (e.g., for easier backups) to map the persistent volume to a host directory: + ```sh docker run --detach \ -p 9117:9117 \ @@ -33,9 +34,9 @@ docker run --detach \ Usage with [Docker Compose] is similarly straightforward.
-As an example, you can see my configuration in [services/trackarr]. +As an example, you can see my configuration in [services/indexarr]. [Debian Linux]: https://debian.org/ [Docker Compose]: https://docs.docker.com/compose/ [Jackett]: https://github.com/Jackett/Jackett -[services/trackarr]: https://github.com/padhi-homelab/services/tree/master/trackarr +[services/trackarr]: https://github.com/padhi-homelab/services/tree/master/indexarr diff --git a/entrypoint-scripts/10.setup-volume.sh b/entrypoint-scripts/10.setup-volume.sh index 8717551..324a6fa 100644 --- a/entrypoint-scripts/10.setup-volume.sh +++ b/entrypoint-scripts/10.setup-volume.sh @@ -1,5 +1,5 @@ #!/bin/sh -e if [ -z "${ENTRYPOINT_RUN_AS_ROOT:-}" ]; then - chown -R $DOCKER_USER:$DOCKER_GROUP /config /downloads + chown -R $DOCKER_USER:$DOCKER_GROUP /config /downloads fi