diff --git a/Dockerfile b/Dockerfile index 603b6ca..65de25e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,7 @@ XDG_CONFIG_HOME="/config" RUN \ echo "**** install packages ****" && \ apk --no-cache add \ + icu-data-full \ icu-libs && \ echo "**** install jackett ****" && \ mkdir -p \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 1c2d05c..b60285d 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -16,6 +16,7 @@ XDG_CONFIG_HOME="/config" RUN \ echo "**** install packages ****" && \ apk --no-cache add \ + icu-data-full \ icu-libs && \ echo "**** install jackett ****" && \ mkdir -p \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 8a04c6c..c2f2ff9 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -16,6 +16,7 @@ XDG_CONFIG_HOME="/config" RUN \ echo "**** install packages ****" && \ apk --no-cache add \ + icu-data-full \ icu-libs && \ echo "**** install jackett ****" && \ mkdir -p \ diff --git a/README.md b/README.md index 1fac1a7..3399fdd 100644 --- a/README.md +++ b/README.md @@ -71,8 +71,6 @@ This image provides various versions that are available via tags. Please read th The web interface is at `:9117` , configure various trackers and connections to other apps there. More info at [Jackett](https://github.com/Jackett/Jackett). -Disable autoupdates in the webui to prevent jackett crashing, the image is refreshed when new versions are released. - ## Usage Here are some example snippets to help you get started creating a container. @@ -91,10 +89,10 @@ services: - PGID=1000 - TZ=Etc/UTC - AUTO_UPDATE=true #optional - - "RUN_OPTS=" #optional + - RUN_OPTS= #optional volumes: - - :/config - - :/downloads + - /path/to/data:/config + - /path/to/blackhole:/downloads ports: - 9117:9117 restart: unless-stopped @@ -109,10 +107,10 @@ docker run -d \ -e PGID=1000 \ -e TZ=Etc/UTC \ -e AUTO_UPDATE=true `#optional` \ - -e RUN_OPTS="" `#optional` \ + -e RUN_OPTS= `#optional` \ -p 9117:9117 \ - -v :/config \ - -v :/downloads \ + -v /path/to/data:/config \ + -v /path/to/blackhole:/downloads \ --restart unless-stopped \ lscr.io/linuxserver/jackett:latest @@ -129,7 +127,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-e PGID=1000` | for GroupID - see below for explanation | | `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | | `-e AUTO_UPDATE=true` | Allow Jackett to update inside of the container (currently recommended by Jackett and enabled by default) | -| `-e RUN_OPTS=` | Optionally specify additional arguments to be passed. | +| `-e RUN_OPTS=` | Optionally specify additional arguments to be passed. | | `-v /config` | Where Jackett should store its config file. | | `-v /downloads` | Path to torrent blackhole. | @@ -242,6 +240,8 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **13.02.23:** - Add icu-data-full to address [ICU issue](https://github.com/Jackett/Jackett/issues/14008) with Cyrillic character sets. +* **11.02.23:** - Rebase to Alpine 3.17, migrate to s6v3. * **10.05.22:** - Rebase to Ubuntu Focal. * **24.05.20:** - Allow user to optionally enable auto updates. * **31.12.19:** - Remove agressive startup chowning. diff --git a/readme-vars.yml b/readme-vars.yml index de3b37d..19ab5a2 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -57,7 +57,7 @@ app_setup_block: | # changelog changelogs: - - { date: "13.02.23:", desc: "Rebase to Alpine 3.16 to mitigate [ICU issue](https://github.com/Jackett/Jackett/issues/14008)." } + - { date: "13.02.23:", desc: "Add icu-data-full to address [ICU issue](https://github.com/Jackett/Jackett/issues/14008) with Cyrillic character sets." } - { date: "11.02.23:", desc: "Rebase to Alpine 3.17, migrate to s6v3." } - { date: "10.05.22:", desc: "Rebase to Ubuntu Focal." } - { date: "24.05.20:", desc: "Allow user to optionally enable auto updates." }