Compare commits

...

37 Commits

Author SHA1 Message Date
GitHub Actions
c6a55ea5f4 Revert "fix(linkwarden): stop installing packages Debian 11 no longer serves (#3047)"
This reverts commit 296bb3767a.
2026-09-05 05:51:42 +00:00
Alexandre
a237a6820c fix(wger): set the database env vars the upstream image stopped shipping (#3044)
* fix(wger): set the database env vars the upstream image stopped shipping

wger/server:latest no longer defines DJANGO_DB_ENGINE or DJANGO_DB_DATABASE in
its image environment, and upstream settings/main.py reads both with no
fallback. Every fresh install therefore died at startup with
"ImproperlyConfigured: Set the DJANGO_DB_ENGINE environment variable".

Set both explicitly in the Dockerfile, pointing at the sqlite database in
/data/database.sqlite that the add-on already persists, and add
DJANGO_PERFORM_MIGRATIONS=True so an existing database picks up new migrations
when the image is rebuilt against a newer upstream release.

With the path now set through the environment, the cont-init rewrite of the
database path in the Python settings is dead code — upstream no longer
hardcodes /home/wger/db/database.sqlite anywhere, so it only logged a warning.

Also move the add-on to the addon_configs location, as the issue asks: the
shared 01-config_yaml.sh template migrates an existing
/homeassistant/addons_config/wger/config.yaml on the first start.

Fixes #3043

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

* docs(wger): use the ISO date format the rest of this CHANGELOG uses

The 2.6.4 heading was written 04-09-2026 while every other dated heading
in this file, and 22937 of the 23999 dated headings in the repo, use ISO
YYYY-MM-DD. Copilot flagged the inconsistency on #3044.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
2026-09-05 07:49:00 +02:00
Alexandre
296bb3767a fix(linkwarden): stop installing packages Debian 11 no longer serves (#3047)
* fix(linkwarden): stop installing packages Debian 11 no longer serves

The 2.16.2 updater build failed in the first RUN layer:

  E: Failed to fetch .../sudo_1.9.5p2-3%2bdeb11u4_amd64.deb  404  Not Found
  E: Failed to fetch .../vim-runtime_8.2.2434-3%2bdeb11u3_all.deb  404  Not Found

Debian 11 reached LTS end on 2026-08-31. Its bullseye-security index is frozen
at that date and still lists debs that deb.debian.org no longer serves; sudo is
one of them and still 404s on every deb.debian.org edge checked today, so the
build fails deterministically rather than transiently. Every package in
postgresql-16's own dependency chain that comes from bullseye-security was
checked and does fetch, so removing this first install unblocks the build.

None of the four packages is needed:

  - vim was never used by the add-on.
  - gnupg2 was only there for "gpg --dearmor"; apt reads the ASCII-armoured key
    from /etc/apt/trusted.gpg.d/postgresql.asc directly.
  - lsb-release was only there for "lsb_release -cs"; /etc/os-release carries
    VERSION_CODENAME.
  - sudo is replaced by su in the Postgres bootstrap, which is what the ente and
    postgres_15 add-ons already use for the same job.

curl is already present in the upstream linkwarden image, so no install step is
needed before the PGDG repository is configured.

The su rewrite keeps the argv psql receives identical. Because "su -" starts a
login shell, the service call now uses an absolute path (the login PATH has no
/usr/sbin) and the bootstrap SQL is written to and read from /tmp rather than
the script's working directory.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

* fix(linkwarden): fetch bullseye-security from its origin, not the CDN

Dropping vim/gnupg2/lsb-release/sudo got the build past the first RUN, but
"apt-get install -y postgresql-16" then 404'd on its own dependencies, on arm64:

  E: Failed to fetch .../glibc/libc-l10n_2.31-13%2bdeb11u14_all.deb          404
  E: Failed to fetch .../exim4/exim4-base_4.94.2-7%2bdeb11u6_arm64.deb       404
  E: Failed to fetch .../python3.9/libpython3.9-minimal_3.9.2-1%2bdeb11u7_arm64.deb  404

All three are 200 on security.debian.org, the origin that deb.debian.org is a
CDN alias for. The rot is per-file and moves: exim4-base was 404 during the
build and 200 minutes later, so retrying is a coin flip rather than a fix.

Rewrite the security suite in /etc/apt/sources.list to security.debian.org
before "apt-get update". The main suite is left on the CDN; it is intact, and
bullseye main is already on archive.debian.org whereas bullseye-security is not.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

* fix(linkwarden): feed the bootstrap SQL on stdin, and fix two comments

Review follow-up on the temp file, the Dockerfile comment and the CHANGELOG
wording.

The bootstrap SQL no longer goes through a file at all. Both reviewers objected
to the predictable root-written /tmp path; passing the statements to psql on
stdin removes the file rather than defending it, and is less code than either
the version being reviewed or the suggested mktemp. It also restores what the
original did before this branch: sudo ran "cat file | psql", so psql read the
statements from stdin then too.

The Dockerfile comment said "PGDATA repository" where it meant the PGDG apt
repository; PGDATA is the data-directory env var set two lines above, so the
wording was actively misleading.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

* chore: record the shipped upstream release in updater.json

Each PR publishes an upstream version the updater bot had already selected
before CI reverted its commit, but updater.json still recorded the previous one.
The updater reads upstream_version as CURRENT and enters its update path
whenever it differs from the latest tag, so its next run would process the same
release again and derive a synthetic trailing-.1 version, producing a redundant
release, a duplicate CHANGELOG entry and a wasted build.

These values are exactly what the bot itself wrote in the reverted commit; this
restores its own record for a release now being shipped rather than choosing a
new one.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

* fix(linkwarden): keep the Postgres password out of process arguments

CodeRabbit flagged that the password appears in the command string of the
password-setting call, and that the database-creation call reaches Postgres over
a TCP URI carrying the same password with sslmode=prefer. Both predate this
branch, but both lines are touched here.

Sending each statement to psql on stdin removes the password and the URI from
argv, and is shorter than either form it replaces: the escaped-quote nesting on
the ALTER USER call disappears with it.

The connection method is unchanged for the ALTER USER call, which already went
over the local socket as the postgres user. The database-creation call moves
from TCP to that same socket. This is safe by construction rather than by
assumption: the ALTER USER call runs first under "set -e" with no "|| true", so
the container cannot reach the second call unless socket access already worked.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
2026-09-05 07:47:54 +02:00
Alexandre
62bbecb465 fix(mealie): build the frontend with pnpm and the upstream lockfile (#3046)
* fix(mealie): build the frontend with pnpm and the upstream lockfile

Upstream mealie migrated frontend/ from yarn to pnpm in v3.24.0 and deleted
frontend/yarn.lock. Our builder stage kept running "yarn install
--frozen-lockfile", which silently degraded to a fresh, unpinned resolution of
every dependency. That worked until a newer vuetify 4.x release dropped the
"vuetify/labs/rules" entry point, at which point "nuxt generate" failed with:

  Rolldown failed to resolve import "vuetify/labs/rules" from
  "virtual:nuxt:.nuxt%2Fvuetify-nuxt-plugin.client.mjs"

and the v3.25.1 updater build was reverted.

Mirror upstream's docker/Dockerfile frontend stage instead: node:24, a global
pnpm@11, and "pnpm install --frozen-lockfile" against the committed
pnpm-lock.yaml, so the dependency set is the one upstream tests. Also copy the
frontend tree with "cp -a frontend/." so dotfiles such as .nuxtignore come
across, and shallow-clone the tag.

Bumps the add-on to v3.25.1, the version the updater bot could not build.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

* chore: record the shipped upstream release in updater.json

Each PR publishes an upstream version the updater bot had already selected
before CI reverted its commit, but updater.json still recorded the previous one.
The updater reads upstream_version as CURRENT and enters its update path
whenever it differs from the latest tag, so its next run would process the same
release again and derive a synthetic trailing-.1 version, producing a redundant
release, a duplicate CHANGELOG entry and a wasted build.

These values are exactly what the bot itself wrote in the reverted commit; this
restores its own record for a release now being shipped rather than choosing a
new one.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
2026-09-05 07:47:32 +02:00
GitHub Actions
01a865cffc Revert "Updater bot : mealie updated to v3.25.1 (upstream v3.25.1)"
This reverts commit 43df7231c7.
2026-09-04 23:40:08 +00:00
GitHub Actions
1c67e1e54b Revert "Updater bot : linkwarden updated to 2.16.2 (upstream 2.16.2)"
This reverts commit 44c1aae219.
2026-09-04 23:35:39 +00:00
alexbelgium
dcf84fa74f Updater bot : zzz_archived_paperless_ngx updated to 3.1.3 (upstream 3.1.3) 2026-09-05 01:33:39 +02:00
alexbelgium
6d7107cce3 Updater bot : webtop_kde updated to 4.16.0.96 (upstream 4.16-r0-ls92) 2026-09-05 01:33:01 +02:00
alexbelgium
b068dd1406 Updater bot : unpackerr updated to v0.16.1 (upstream v0.16.1) 2026-09-05 01:32:11 +02:00
alexbelgium
8292a9ad89 Updater bot : sonarr updated to 4.0.19.3009 (upstream 4.0.19.3009) 2026-09-05 01:31:43 +02:00
alexbelgium
b7ea31bd99 Updater bot : prowlarr updated to 2.6.3.5608.14 (upstream nightly-2.6.3.5608-ls14) 2026-09-05 01:30:51 +02:00
alexbelgium
8b403047fd Updater bot : plex updated to 1.43.3.10896.322 (upstream 1.43.3.10896-cb3ebc72d-ls322) 2026-09-05 01:30:38 +02:00
alexbelgium
c73c71bba5 Updater bot : openproject updated to 17.8.0 (upstream 17.8.0) 2026-09-05 01:30:27 +02:00
alexbelgium
e9ca3d4c47 Updater bot : nzbget updated to v26.3.262 (upstream v26.3-ls262) 2026-09-05 01:30:15 +02:00
alexbelgium
b9313b6868 Updater bot : netalertx_fa updated to 26.9.0 (upstream 26.9.0) 2026-09-05 01:30:06 +02:00
alexbelgium
c342074b37 Updater bot : netalertx updated to 26.9.0 (upstream 26.9.0) 2026-09-05 01:30:01 +02:00
alexbelgium
43df7231c7 Updater bot : mealie updated to v3.25.1 (upstream v3.25.1) 2026-09-05 01:29:44 +02:00
alexbelgium
20bf5165a5 Updater bot : maintainerr updated to 3.26.0 (upstream 3.26.0) 2026-09-05 01:29:34 +02:00
alexbelgium
44c1aae219 Updater bot : linkwarden updated to 2.16.2 (upstream 2.16.2) 2026-09-05 01:29:29 +02:00
alexbelgium
5edb7bce4c Updater bot : jackett updated to 0.24.2531 (upstream 0.24.2531) 2026-09-05 01:29:02 +02:00
alexbelgium
df6c195803 Updater bot : immich_power_tools updated to 0.23.0 (upstream 0.23.0) 2026-09-05 01:28:56 +02:00
alexbelgium
43b4451635 Updater bot : grav updated to 2.0.24 (upstream 2.0.24) 2026-09-05 01:28:30 +02:00
alexbelgium
1110d02d22 Updater bot : gitea updated to 1.27.3 (upstream 1.27.3) 2026-09-05 01:28:21 +02:00
alexbelgium
370b031400 Updater bot : flexget updated to 3.20.9 (upstream ci) 2026-09-05 01:28:10 +02:00
alexbelgium
58e3077b3c Updater bot : filebrowser_quantum updated to 1.5.6 (upstream 1.5.6) 2026-09-05 01:27:54 +02:00
alexbelgium
9f5c9bdf32 Updater bot : ente updated to 4.4.27 (upstream 1.7.28) 2026-09-05 01:27:44 +02:00
alexbelgium
74960a5d5f Updater bot : emby_beta updated to 4.10.0.30 (upstream 4.10.0.30) 2026-09-05 01:27:32 +02:00
alexbelgium
5bc3dedd12 Updater bot : elasticsearch updated to 8.19.21 (upstream 8.19.21) 2026-09-05 01:27:24 +02:00
alexbelgium
55a93ba9c5 Updater bot : comicarr updated to 0.38.7 (upstream 0.38.7) 2026-09-05 01:27:17 +02:00
alexbelgium
180db389fa Updater bot : collabora updated to 26.04.3.2.1 (upstream 26.04.3.2.1) 2026-09-05 01:27:13 +02:00
alexbelgium
c791b9781f Updater bot : cloudcommander updated to 19.20.5 (upstream 19.20.5) 2026-09-05 01:27:06 +02:00
alexbelgium
573acf1087 Updater bot : claude_desktop updated to 07308545.6 (upstream v3.2.3+claude1.40609.1) 2026-09-05 01:26:58 +02:00
alexbelgium
d3057425de Updater bot : changedetection.io updated to 0.60.3 (upstream 0.60.3) 2026-09-05 01:26:53 +02:00
alexbelgium
592b49162e Updater bot : browserless_chrome updated to 2.56.3 (upstream 2.56.3) 2026-09-05 01:26:42 +02:00
alexbelgium
510239a0a1 Updater bot : browser_chromium updated to 2026.09.05 (upstream version-d39975b5) 2026-09-05 01:26:36 +02:00
alexbelgium
d8208f0eca Updater bot : browser_brave updated to 1.94.121-ls127 (upstream 1.94.121-ls127) 2026-09-05 01:26:25 +02:00
alexbelgium
a18e24d99f Updater bot : aurral updated to 2.8.0 (upstream 2.8.0) 2026-09-05 01:25:13 +02:00
102 changed files with 225 additions and 121 deletions

View File

@@ -1,4 +1,7 @@
## 2.8.0 (2026-09-05)
- Update to latest version from lklynet/aurral (changelog : https://github.com/lklynet/aurral/releases)
## 2.7.0 (2026-08-29)
- Update to latest version from lklynet/aurral (changelog : https://github.com/lklynet/aurral/releases)

View File

@@ -1,5 +1,5 @@
name: Aurral
version: "2.7.0"
version: "2.8.0"
slug: aurral
description: >-
Self-hosted music discovery, request management, flows, and playlist

View File

@@ -1,9 +1,9 @@
{
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "aurral",
"source": "github",
"upstream_repo": "lklynet/aurral",
"upstream_version": "2.7.0",
"upstream_version": "2.8.0",
"github_beta": false
}

View File

@@ -1,4 +1,7 @@
## 1.94.121-ls127 (2026-09-05)
- Update to latest version from linuxserver/docker-brave (changelog : https://github.com/linuxserver/docker-brave/releases)
## 1.94.117-ls125 (2026-08-29)
- Update to latest version from linuxserver/docker-brave (changelog : https://github.com/linuxserver/docker-brave/releases)

View File

@@ -69,5 +69,5 @@ slug: brave
tmpfs: true
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "1.94.117-ls125"
version: "1.94.121-ls127"
video: true

View File

@@ -1,9 +1,9 @@
{
"github_fulltag": "true",
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "brave",
"source": "github",
"upstream_repo": "linuxserver/docker-brave",
"upstream_version": "1.94.117-ls125"
"upstream_version": "1.94.121-ls127"
}

View File

@@ -1,4 +1,8 @@
## 2026.09.05 (2026-09-05)
- Update to latest version from linuxserver/docker-chromium (changelog : https://github.com/linuxserver/docker-chromium/releases)
- Upstream tag : version-d39975b5
## 2026.08.13 (2026-08-13)
- Update to latest version from linuxserver/docker-chromium (changelog : https://github.com/linuxserver/docker-chromium/releases)
- Upstream tag : version-e8713bf7

View File

@@ -71,5 +71,5 @@ slug: chromium
tmpfs: true
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "2026.08.13"
version: "2026.09.05"
video: true

View File

@@ -1,9 +1,9 @@
{
"github_fulltag": "true",
"last_update": "2026-08-13",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "chromium",
"source": "github",
"upstream_repo": "linuxserver/docker-chromium",
"upstream_version": "version-e8713bf7"
"upstream_version": "version-d39975b5"
}

View File

@@ -1,4 +1,7 @@
## 2.56.3 (2026-09-05)
- Update to latest version from browserless/chrome (changelog : https://github.com/browserless/chrome/releases)
## 2.56.0 (2026-08-22)
- Update to latest version from browserless/chrome (changelog : https://github.com/browserless/chrome/releases)

View File

@@ -86,5 +86,5 @@ schema:
slug: browserless_chrome
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/browserless_chrome
version: "2.56.0"
version: "2.56.3"
webui: "[PROTO:ssl]://[HOST]:[PORT:3000]/docs"

View File

@@ -1,9 +1,9 @@
{
"github_tagfilter": "v",
"last_update": "2026-08-22",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "browserless_chrome",
"source": "github",
"upstream_repo": "browserless/chrome",
"upstream_version": "2.56.0"
"upstream_version": "2.56.3"
}

View File

@@ -1,4 +1,7 @@
## 0.60.3 (2026-09-05)
- Update to latest version from linuxserver/docker-changedetection.io (changelog : https://github.com/linuxserver/docker-changedetection.io/releases)
## 0.55.8 (2026-07-16)
- Update to latest version from linuxserver/docker-changedetection.io (changelog : https://github.com/linuxserver/docker-changedetection.io/releases)

View File

@@ -34,4 +34,4 @@ schema:
slug: changedetection.io
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/changedetection.io
version: "0.55.8"
version: "0.60.3"

View File

@@ -1,9 +1,9 @@
{
"github_fulltag": "false",
"last_update": "2026-07-16",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "changedetection.io",
"source": "github",
"upstream_repo": "linuxserver/docker-changedetection.io",
"upstream_version": "0.55.8"
"upstream_version": "0.60.3"
}

View File

@@ -1,4 +1,8 @@
## 07308545.6 (2026-09-05)
- Update to latest version from aaddrick/claude-desktop-debian (changelog : https://github.com/aaddrick/claude-desktop-debian/releases)
- Upstream tag : v3.2.3+claude1.40609.1
## 07308545.5 (2026-08-29)
- Update to latest version from aaddrick/claude-desktop-debian (changelog : https://github.com/aaddrick/claude-desktop-debian/releases)
- Upstream tag : v3.2.2+claude1.37937.3

View File

@@ -136,5 +136,5 @@ schema:
slug: claude_desktop
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "07308545.5"
version: "07308545.6"
video: true

View File

@@ -4,6 +4,6 @@
"github_fulltag": true,
"slug": "claude_desktop",
"paused": false,
"upstream_version": "v3.2.2+claude1.37937.3",
"last_update": "2026-08-29"
"upstream_version": "v3.2.3+claude1.40609.1",
"last_update": "2026-09-05"
}

View File

@@ -1,4 +1,7 @@
## 19.20.5 (2026-09-05)
- Update to latest version from coderaiser/cloudcmd (changelog : https://github.com/coderaiser/cloudcmd/releases)
## 19.20.4 (2026-08-29)
- Update to latest version from coderaiser/cloudcmd (changelog : https://github.com/coderaiser/cloudcmd/releases)

View File

@@ -104,4 +104,4 @@ schema:
slug: cloudcommander
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/cloudcommander
version: "19.20.4"
version: "19.20.5"

View File

@@ -1,8 +1,8 @@
{
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "cloudcommander",
"source": "github",
"upstream_repo": "coderaiser/cloudcmd",
"upstream_version": "19.20.4"
"upstream_version": "19.20.5"
}

View File

@@ -1,4 +1,7 @@
## 26.04.3.2.1 (2026-09-05)
- Update to latest version from collabora/code
## 26.04.3.1.1 (2026-08-13)
- Update to latest version from collabora/code

View File

@@ -48,5 +48,5 @@ schema:
username: str
slug: collabora
url: https://github.com/alexbelgium/hassio-addons
version: "26.04.3.1.1"
version: "26.04.3.2.1"
webui: "[PROTO:ssl]://[HOST]:[PORT:9980]/browser/dist/admin/admin.html"

View File

@@ -1,9 +1,9 @@
{
"github_exclude": "sha256",
"last_update": "2026-08-13",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "collabora",
"source": "dockerhub",
"upstream_repo": "collabora/code",
"upstream_version": "26.04.3.1.1"
"upstream_version": "26.04.3.2.1"
}

View File

@@ -1,4 +1,7 @@
## 0.38.7 (2026-09-05)
- Update to latest version from frankieramirez/comicarr (changelog : https://github.com/frankieramirez/comicarr/releases)
## 0.38.2 (2026-08-29)
- Update to latest version from frankieramirez/comicarr (changelog : https://github.com/frankieramirez/comicarr/releases)
## 0.34.0 (20-08-2026)

View File

@@ -16,7 +16,7 @@
ARG BUILD_FROM
ARG BUILD_VERSION
ARG BUILD_UPSTREAM="0.38.2"
ARG BUILD_UPSTREAM="0.38.7"
FROM ghcr.io/frankieramirez/comicarr:${BUILD_UPSTREAM}
##################

View File

@@ -102,4 +102,4 @@ schema:
slug: comicarr
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/comicarr
version: "0.38.2"
version: "0.38.7"

View File

@@ -1,10 +1,10 @@
{
"github_beta": "false",
"github_fulltag": false,
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "comicarr",
"source": "github",
"upstream_repo": "frankieramirez/comicarr",
"upstream_version": "0.38.2"
"upstream_version": "0.38.7"
}

View File

@@ -1,4 +1,7 @@
## 8.19.21 (2026-09-05)
- Update to latest version from elastic/elasticsearch (changelog : https://github.com/elastic/elasticsearch/releases)
## 8.19.20 (2026-08-13)
- Update to latest version from elastic/elasticsearch (changelog : https://github.com/elastic/elasticsearch/releases)
## 8.19.19.2 (21-07-2026)

View File

@@ -14,7 +14,7 @@
# 1 Build Image #
#################
ARG BUILD_UPSTREAM="8.19.20"
ARG BUILD_UPSTREAM="8.19.21"
# Pull from Elastic's own registry (multi-arch, published atomically with the
# GitHub release the updater tracks) rather than the Docker Hub "library"
# mirror, whose arm64/aarch64 tag lags hours behind and breaks the aarch64

View File

@@ -90,4 +90,4 @@ slug: elasticsearch
startup: services
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/elasticsearch
version: "8.19.20"
version: "8.19.21"

View File

@@ -1,10 +1,10 @@
{
"github_fulltag": false,
"github_tagfilter": "v8.19",
"last_update": "2026-08-13",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "elasticsearch",
"source": "github",
"upstream_repo": "elastic/elasticsearch",
"upstream_version": "8.19.20"
"upstream_version": "8.19.21"
}

View File

@@ -1,4 +1,7 @@
## 4.10.0.30 (2026-09-05)
- Update to latest version from linuxserver/docker-emby (changelog : https://github.com/linuxserver/docker-emby/releases)
## 4.10.0.29 (2026-08-29)
- Update to latest version from linuxserver/docker-emby (changelog : https://github.com/linuxserver/docker-emby/releases)

View File

@@ -16,7 +16,7 @@
ARG BUILD_FROM
ARG BUILD_VERSION
ARG BUILD_UPSTREAM="4.10.0.29"
ARG BUILD_UPSTREAM="4.10.0.30"
FROM ${BUILD_FROM}
##################

View File

@@ -122,5 +122,5 @@ schema:
slug: emby_nas
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/emby
version: "4.10.0.29"
version: "4.10.0.30"
video: true

View File

@@ -1,9 +1,9 @@
{
"github_beta": "true",
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "emby",
"source": "github",
"upstream_repo": "linuxserver/docker-emby",
"upstream_version": "4.10.0.29"
"upstream_version": "4.10.0.30"
}

View File

@@ -1,4 +1,8 @@
## 4.4.27 (2026-09-05)
- Update to latest version from ente/ente (changelog : https://github.com/ente/ente/releases)
- Upstream tag : 1.7.28
## 4.4.26 (2026-08-13)
- Update to latest version from ente/ente (changelog : https://github.com/ente/ente/releases)
- Upstream tag : 1.3.61

View File

@@ -131,6 +131,6 @@ schema:
slug: ente
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "4.4.26"
version: "4.4.27"
video: true
webui: http://[HOST]:[PORT:3000]

View File

@@ -1,9 +1,9 @@
{
"github_beta": "false",
"last_update": "2026-08-13",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "ente",
"source": "github",
"upstream_repo": "ente/ente",
"upstream_version": "1.3.61"
"upstream_version": "1.7.28"
}

View File

@@ -1,4 +1,7 @@
## 1.5.6 (2026-09-05)
- Update to latest version from gtsteffaniak/filebrowser (changelog : https://github.com/gtsteffaniak/filebrowser/releases)
## 1.5.3.3 (2026-08-31)
- Complete the iOS companion app fix from 1.5.3.2. The "no preview available"
screen -- what you get for a `.zip`, `.bin` or anything else FileBrowser

View File

@@ -118,4 +118,4 @@ schema:
slug: filebrowser_quantum
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "1.5.3.3"
version: "1.5.6"

View File

@@ -1,10 +1,10 @@
{
"github_beta": "false",
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"paused": false,
"repository": "alexbelgium/hassio-addons",
"slug": "filebrowser_quantum",
"source": "github",
"upstream_repo": "gtsteffaniak/filebrowser",
"upstream_version": "1.5.3"
"upstream_version": "1.5.6"
}

View File

@@ -1,4 +1,8 @@
## 3.20.9 (2026-09-05)
- Update to latest version from wiserain/flexget
- Upstream tag : ci
## 3.20.8 (2026-08-29)
- Update to latest version from wiserain/flexget

View File

@@ -95,5 +95,5 @@ schema:
slug: flexget
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "3.20.8"
version: "3.20.9"
webui: "[PROTO:ssl]://[HOST]:[PORT:5050]"

View File

@@ -1,9 +1,9 @@
{
"dockerhub_list_size": "10",
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "flexget",
"source": "dockerhub",
"upstream_repo": "wiserain/flexget",
"upstream_version": "3.20.8"
"upstream_version": "ci"
}

View File

@@ -1,4 +1,7 @@
## 1.27.3 (2026-09-05)
- Update to latest version from go-gitea/gitea (changelog : https://github.com/go-gitea/gitea/releases)
## 1.27.2 (2026-08-15)
- Update to latest version from go-gitea/gitea (changelog : https://github.com/go-gitea/gitea/releases)

View File

@@ -97,5 +97,5 @@ schema:
slug: gitea
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/gitea
version: "1.27.2"
version: "1.27.3"
webui: "[PROTO:ssl]://[HOST]:[PORT:3000]"

View File

@@ -1,8 +1,8 @@
{
"last_update": "2026-08-15",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "gitea",
"source": "github",
"upstream_repo": "go-gitea/gitea",
"upstream_version": "1.27.2"
"upstream_version": "1.27.3"
}

View File

@@ -1,4 +1,7 @@
## 2.0.24 (2026-09-05)
- Update to latest version from linuxserver/docker-grav (changelog : https://github.com/linuxserver/docker-grav/releases)
## 2.0.21 (2026-08-29)
- Update to latest version from linuxserver/docker-grav (changelog : https://github.com/linuxserver/docker-grav/releases)

View File

@@ -16,7 +16,7 @@
ARG BUILD_FROM
ARG BUILD_VERSION
ARG BUILD_UPSTREAM="2.0.21"
ARG BUILD_UPSTREAM="2.0.24"
FROM ${BUILD_FROM}
##################

View File

@@ -89,5 +89,5 @@ schema:
slug: grav
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "2.0.21"
version: "2.0.24"
webui: "[PROTO:ssl]://[HOST]:[PORT:80]"

View File

@@ -1,9 +1,9 @@
{
"github_beta": false,
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "grav",
"source": "github",
"upstream_repo": "linuxserver/docker-grav",
"upstream_version": "2.0.21"
"upstream_version": "2.0.24"
}

View File

@@ -1,4 +1,7 @@
## 0.23.0 (2026-09-05)
- Update to latest version from varun-raj/immich-power-tools (changelog : https://github.com/varun-raj/immich-power-tools/releases)
## 0.22.0 (2026-07-04)
- Update to latest version from varun-raj/immich-power-tools (changelog : https://github.com/varun-raj/immich-power-tools/releases)

View File

@@ -30,5 +30,5 @@ schema:
IMMICH_URL: str
slug: immich_power_tools
url: https://github.com/alexbelgium/hassio-addons
version: "0.22.0"
version: "0.23.0"
webui: http://[HOST]:[PORT:3000]

View File

@@ -1,9 +1,9 @@
{
"github_beta": "false",
"last_update": "2026-07-04",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "immich-power-tools",
"source": "github",
"upstream_repo": "varun-raj/immich-power-tools",
"upstream_version": "0.22.0"
"upstream_version": "0.23.0"
}

View File

@@ -1,4 +1,7 @@
## 0.24.2531 (2026-09-05)
- Update to latest version from linuxserver/docker-jackett (changelog : https://github.com/linuxserver/docker-jackett/releases)
## 0.24.2486 (2026-08-29)
- Update to latest version from linuxserver/docker-jackett (changelog : https://github.com/linuxserver/docker-jackett/releases)

View File

@@ -106,5 +106,5 @@ schema:
slug: jackett_nas
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/jackett
version: "0.24.2486"
version: "0.24.2531"
webui: http://[HOST]:[PORT:9117]

View File

@@ -1,8 +1,8 @@
{
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "jackett",
"source": "github",
"upstream_repo": "linuxserver/docker-jackett",
"upstream_version": "0.24.2486"
"upstream_version": "0.24.2531"
}

View File

@@ -1,4 +1,7 @@
## 3.26.0 (2026-09-05)
- Update to latest version from maintainerr/maintainerr (changelog : https://github.com/maintainerr/maintainerr/releases)
## 3.25.0 (2026-08-29)
- Update to latest version from maintainerr/maintainerr (changelog : https://github.com/maintainerr/maintainerr/releases)

View File

@@ -11,7 +11,7 @@
#=== Home Assistant Addon ===#
# ARGs used in FROM must be declared before any FROM instruction
ARG BUILD_UPSTREAM="3.25.0"
ARG BUILD_UPSTREAM="3.26.0"
############################
# 0) Tools stage #

View File

@@ -88,5 +88,5 @@ schema:
TZ: str?
slug: maintainerr
url: https://github.com/alexbelgium/hassio-addons/tree/master/maintainerr
version: "3.25.0"
version: "3.26.0"
webui: "[PROTO:ssl]://[HOST]:[PORT:6246]"

View File

@@ -1,8 +1,8 @@
{
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "maintainerr",
"source": "github",
"upstream_repo": "maintainerr/maintainerr",
"upstream_version": "3.25.0"
"upstream_version": "3.26.0"
}

View File

@@ -1,4 +1,8 @@
## v3.25.1 (2026-09-05)
- Update to latest version from mealie-recipes/mealie (changelog : https://github.com/mealie-recipes/mealie/releases)
- Build the ingress frontend with pnpm and the upstream lockfile: upstream dropped frontend/yarn.lock in v3.24.0, so the previous yarn install resolved dependencies unpinned and the build broke on a vuetify release without "vuetify/labs/rules"
## v3.24.0 (2026-08-29)
- Update to latest version from mealie-recipes/mealie (changelog : https://github.com/mealie-recipes/mealie/releases)

View File

@@ -15,24 +15,30 @@
#################
# Stage 1: Build Frontend with SUB_PATH
FROM node:22 AS frontend-builder
# Mirrors upstream docker/Dockerfile: node:24 + pnpm, installing from the
# committed pnpm-lock.yaml. Upstream dropped frontend/yarn.lock in v3.24.0, so a
# yarn install here resolved every dependency fresh and eventually picked a
# vuetify release without "vuetify/labs/rules", breaking "nuxt generate".
FROM node:24 AS frontend-builder
# Set the SUB_PATH environment variable
ARG SUB_PATH="/mealie/"
ENV SUB_PATH=$SUB_PATH
ENV MEALIE_VERSION="v3.24.0"
ENV MEALIE_VERSION="v3.25.1"
RUN npm install --global pnpm@11
# Clone the Mealie repository to get the frontend source code
WORKDIR /frontend
# hadolint ignore=DL3003
RUN mkdir -p /frontend/tempdir && cd /frontend/tempdir && \
git clone --branch "$MEALIE_VERSION" https://github.com/mealie-recipes/mealie.git . && \
cp -rf frontend/* /frontend && cd /frontend && rm -rf tempdir && \
yarn install --prefer-offline --frozen-lockfile --non-interactive --production=false --network-timeout 1000000
git clone --depth 1 --branch "$MEALIE_VERSION" https://github.com/mealie-recipes/mealie.git . && \
cp -a frontend/. /frontend/ && cd /frontend && rm -rf tempdir && \
pnpm install --frozen-lockfile
# Build the frontend
RUN yarn generate
RUN pnpm generate
# Stage 2: Build the Final Image
FROM hkotel/mealie:latest

View File

@@ -114,4 +114,4 @@ schema:
slug: mealie
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "v3.24.0"
version: "v3.25.1"

View File

@@ -1,11 +1,11 @@
{
"github_beta": "true",
"github_fulltag": "true",
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"paused": "false",
"repository": "alexbelgium/hassio-addons",
"slug": "mealie",
"source": "github",
"upstream_repo": "mealie-recipes/mealie",
"upstream_version": "v3.24.0"
"upstream_version": "v3.25.1"
}

View File

@@ -1,4 +1,7 @@
## 26.9.0 (2026-09-05)
- Update to latest version from jokob-sk/NetAlertX (changelog : https://github.com/jokob-sk/NetAlertX/releases)
## 26.8.5 (2026-08-08)
- Update to latest version from jokob-sk/NetAlertX (changelog : https://github.com/jokob-sk/NetAlertX/releases)

View File

@@ -42,4 +42,4 @@ slug: netalertx
tmpfs: true
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "26.8.5"
version: "26.9.0"

View File

@@ -1,9 +1,9 @@
{
"last_update": "2026-08-08",
"last_update": "2026-09-05",
"paused": "false",
"repository": "alexbelgium/hassio-addons",
"slug": "netalertx",
"source": "github",
"upstream_repo": "jokob-sk/NetAlertX",
"upstream_version": "26.8.5"
"upstream_version": "26.9.0"
}

View File

@@ -1,4 +1,7 @@
## 26.9.0 (2026-09-05)
- Update to latest version from jokob-sk/NetAlertX (changelog : https://github.com/jokob-sk/NetAlertX/releases)
## 26.8.5 (2026-08-08)
- Update to latest version from jokob-sk/NetAlertX (changelog : https://github.com/jokob-sk/NetAlertX/releases)

View File

@@ -43,4 +43,4 @@ slug: netalertx_fa
tmpfs: true
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "26.8.5"
version: "26.9.0"

View File

@@ -1,9 +1,9 @@
{
"last_update": "2026-08-08",
"last_update": "2026-09-05",
"paused": false,
"repository": "alexbelgium/hassio-addons",
"slug": "netalertx_fa",
"source": "github",
"upstream_repo": "jokob-sk/NetAlertX",
"upstream_version": "26.8.5"
"upstream_version": "26.9.0"
}

View File

@@ -1,4 +1,8 @@
## v26.3.262 (2026-09-05)
- Update to latest version from linuxserver/docker-nzbget (changelog : https://github.com/linuxserver/docker-nzbget/releases)
- Upstream tag : v26.3-ls262
## v26.3.261 (2026-08-29)
- Update to latest version from linuxserver/docker-nzbget (changelog : https://github.com/linuxserver/docker-nzbget/releases)
- Upstream tag : v26.3-ls261

View File

@@ -104,4 +104,4 @@ schema:
slug: nzbget
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "v26.3.261"
version: "v26.3.262"

View File

@@ -1,9 +1,9 @@
{
"github_fulltag": "true",
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "nzbget",
"source": "github",
"upstream_repo": "linuxserver/docker-nzbget",
"upstream_version": "v26.3-ls261"
"upstream_version": "v26.3-ls262"
}

View File

@@ -1,4 +1,7 @@
## 17.8.0 (2026-09-05)
- Update to latest version from opf/openproject (changelog : https://github.com/opf/openproject/releases)
## 17.7.2 (2026-08-13)
- Update to latest version from opf/openproject (changelog : https://github.com/opf/openproject/releases)

View File

@@ -34,5 +34,5 @@ schema:
slug: openproject
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/openproject
version: "17.7.2"
version: "17.8.0"
webui: "[PROTO:ssl]://[HOST]:[PORT:8080]"

View File

@@ -1,8 +1,8 @@
{
"last_update": "2026-08-13",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "openproject",
"source": "github",
"upstream_repo": "opf/openproject",
"upstream_version": "17.7.2"
"upstream_version": "17.8.0"
}

View File

@@ -1,4 +1,8 @@
## 1.43.3.10896.322 (2026-09-05)
- Update to latest version from linuxserver/docker-plex (changelog : https://github.com/linuxserver/docker-plex/releases)
- Upstream tag : 1.43.3.10896-cb3ebc72d-ls322
## 1.43.3.10896.321 (2026-08-22)
- Update to latest version from linuxserver/docker-plex (changelog : https://github.com/linuxserver/docker-plex/releases)
- Upstream tag : 1.43.3.10896-cb3ebc72d-ls321

View File

@@ -175,6 +175,6 @@ slug: plex_nas
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/plex
usb: true
version: "1.43.3.10896.321"
version: "1.43.3.10896.322"
video: true
webui: "[PROTO:ssl]://[HOST]:[PORT:32400]/web"

View File

@@ -1,9 +1,9 @@
{
"github_fulltag": "true",
"last_update": "2026-08-22",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "plex",
"source": "github",
"upstream_repo": "linuxserver/docker-plex",
"upstream_version": "1.43.3.10896-cb3ebc72d-ls321"
"upstream_version": "1.43.3.10896-cb3ebc72d-ls322"
}

View File

@@ -1,4 +1,8 @@
## 2.6.3.5608.14 (2026-09-05)
- Update to latest version from linuxserver/docker-prowlarr (changelog : https://github.com/linuxserver/docker-prowlarr/releases)
- Upstream tag : nightly-2.6.3.5608-ls14
## 2.6.2.5583.12 (2026-08-29)
- Update to latest version from linuxserver/docker-prowlarr (changelog : https://github.com/linuxserver/docker-prowlarr/releases)
- Upstream tag : nightly-2.6.2.5583-ls12

View File

@@ -110,4 +110,4 @@ schema:
slug: prowlarr
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "2.6.2.5583.12"
version: "2.6.3.5608.14"

View File

@@ -1,10 +1,10 @@
{
"github_beta": "true",
"github_fulltag": "true",
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "prowlarr",
"source": "github",
"upstream_repo": "linuxserver/docker-prowlarr",
"upstream_version": "nightly-2.6.2.5583-ls12"
"upstream_version": "nightly-2.6.3.5608-ls14"
}

View File

@@ -1,4 +1,7 @@
## 4.0.19.3009 (2026-09-05)
- Update to latest version from linuxserver/docker-sonarr (changelog : https://github.com/linuxserver/docker-sonarr/releases)
## 4.0.19.3007 (2026-08-29)
- Update to latest version from linuxserver/docker-sonarr (changelog : https://github.com/linuxserver/docker-sonarr/releases)

View File

@@ -16,7 +16,7 @@
ARG BUILD_FROM
ARG BUILD_VERSION
ARG BUILD_UPSTREAM="4.0.19.3007"
ARG BUILD_UPSTREAM="4.0.19.3009"
FROM ${BUILD_FROM}
##################

View File

@@ -110,4 +110,4 @@ schema:
slug: sonarr_nas
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/sonarr
version: "4.0.19.3007"
version: "4.0.19.3009"

View File

@@ -1,9 +1,9 @@
{
"github_beta": true,
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "sonarr",
"source": "github",
"upstream_repo": "linuxserver/docker-sonarr",
"upstream_version": "4.0.19.3007"
"upstream_version": "4.0.19.3009"
}

View File

@@ -1,3 +1,6 @@
## v0.16.1 (2026-09-05)
- Update to latest version from Unpackerr/unpackerr (changelog : https://github.com/Unpackerr/unpackerr/releases)
## v0.15.2-2 (2026-04-06)
- Fix environment variables not being passed into the container (e.g. VPN_AUTO_PORT_FORWARD, VPN_ENABLED)

View File

@@ -100,4 +100,4 @@ schema:
slug: unpackerr
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "v0.15.2-2"
version: "v0.16.1"

View File

@@ -1,10 +1,10 @@
{
"dockerhub_by_date": true,
"github_fulltag": true,
"last_update": "2026-03-14",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "unpackerr",
"source": "github",
"upstream_repo": "Unpackerr/unpackerr",
"upstream_version": "v0.15.2"
"upstream_version": "v0.16.1"
}

View File

@@ -1,4 +1,8 @@
## 4.16.0.96 (2026-09-05)
- Update to latest version from linuxserver/docker-webtop (changelog : https://github.com/linuxserver/docker-webtop/releases)
- Upstream tag : 4.16-r0-ls92
## 4.16.0.95 (2026-08-29)
- Update to latest version from linuxserver/docker-webtop (changelog : https://github.com/linuxserver/docker-webtop/releases)
- Upstream tag : 4.16-r0-ls95

View File

@@ -2,11 +2,11 @@
# ALEXBELGIUM'S DOCKERFILE #
#============================#
# _.------.
# _.-` ('>.-`"4.16-r0-ls95""-.
# _.-` ('>.-`"4.16-r0-ls92""-.
# '.--'` _'` _ .--.)
# -' '-.-';` `
# ' - _.' ``'--.
# '---` .-'"4.16-r0-ls95"`
# '---` .-'"4.16-r0-ls92"`
# /`
#=== Home Assistant Addon ===#

View File

@@ -143,5 +143,5 @@ slug: webtop
tmpfs: true
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "4.16.0.95"
version: "4.16.0.96"
video: true

View File

@@ -1,9 +1,9 @@
{
"github_fulltag": "true",
"last_update": "2026-08-29",
"last_update": "2026-09-05",
"repository": "alexbelgium/hassio-addons",
"slug": "webtop",
"source": "github",
"upstream_repo": "linuxserver/docker-webtop",
"upstream_version": "4.16-r0-ls95"
"upstream_version": "4.16-r0-ls92"
}

View File

@@ -1,3 +1,10 @@
## 2.6.4 (2026-09-04)
- Fix the add-on failing to start on a fresh install with `django.core.exceptions.ImproperlyConfigured: Set the DJANGO_DB_ENGINE environment variable`. The upstream `wger/server` image stopped shipping database defaults, and `settings/main.py` reads `DJANGO_DB_ENGINE` and `DJANGO_DB_DATABASE` with no fallback, so the add-on now sets them explicitly to sqlite at `/data/database.sqlite` — the same location the previous startup rewrite produced, so existing databases keep working.
- Set `DJANGO_PERFORM_MIGRATIONS=True`, as upstream's own docker deployment does, so an existing database gets new migrations applied when the add-on is rebuilt against a newer upstream release.
- Drop the startup rewrite of the database path in the Python settings: upstream no longer hardcodes `/home/wger/db/database.sqlite` anywhere, so the rewrite silently did nothing and only logged a warning.
- ⚠ MAJOR CHANGE : switch to the new config logic from homeassistant. Your configuration file will have migrated from /config/addons_config/wger to a folder only accessible from my Filebrowser addon called /addon_configs/xxx-wger. This avoids the addon to mess with your homeassistant configuration folder, and allows to backup the options. Migration is automatic only for a config.yaml sitting at the default /config/addons_config/wger/config.yaml. If you had pointed CONFIG_LOCATION somewhere else inside the homeassistant config folder, or had a custom script at /homeassistant/addons_autoscripts/wger.sh, move the file to /addon_configs/xxx-wger/ by hand and update the option. Please be sure to update all your links ! For more information, see here : https://developers.home-assistant.io/blog/2023/11/06/public-addon-config/
## 2.6.3 (2026-08-01)
- Version renamed from `2.6-dev-3`, which Home Assistant could not order and therefore could not reliably offer as an update: every number of the previous version is kept, as a section of its own. The addon itself and the upstream version it tracks are unchanged

View File

@@ -28,9 +28,14 @@ ENV S6_CMD_WAIT_FOR_SERVICES=1 \
S6_SERVICES_GRACETIME=0
# The upstream image no longer ships database defaults; settings/main.py reads
# DJANGO_DB_ENGINE and DJANGO_DB_DATABASE with no fallback, so they must be set here
ENV SYNC_EXERCISES_ON_STARTUP=True \
DOWNLOAD_EXERCISE_IMAGES_ON_STARTUP=True \
FROM_EMAIL='wger Workout Manager <wger@example.com>' \
DJANGO_DB_ENGINE="django.db.backends.sqlite3" \
DJANGO_DB_DATABASE="/data/database.sqlite" \
DJANGO_PERFORM_MIGRATIONS=True \
DJANGO_MEDIA_ROOT="/data/media" \
DJANGO_STATIC_ROOT="/data/static"

View File

@@ -5,12 +5,13 @@ description: manage your personal workouts, weight and diet plans
image: ghcr.io/alexbelgium/wger-{arch}
map:
- share:rw
- config:rw
- addon_config:rw
- homeassistant_config:rw
- ssl:ro
name: Wger
options:
env_vars: []
CONFIG_LOCATION: /config/addons_config/wger/config.yaml
CONFIG_LOCATION: /config/config.yaml
ports:
80/tcp: 9927
ports_description:
@@ -23,5 +24,5 @@ schema:
slug: wger
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "2.6.3"
version: "2.6.4"
webui: "[PROTO:ssl]://[HOST]:[PORT:80]"

View File

@@ -51,20 +51,6 @@ migrate_database() {
fi
}
############################
# Change database location #
############################
echo "... set database path"
mapfile -t SETTINGS_FILES < <(grep -rl --include='*.py' '/home/wger/db/database.sqlite' /home 2> /dev/null || true)
if [ "${#SETTINGS_FILES[@]}" -gt 0 ]; then
for settings_file in "${SETTINGS_FILES[@]}"; do
sed -i "s|/home/wger/db/database.sqlite|/data/database.sqlite|g" "$settings_file"
done
else
bashio::log.warning "Unable to find Python settings containing database path under /home, skipping rewrite"
fi
#####################
# Adapt directories #
#####################

View File

@@ -1,4 +1,7 @@
## 3.1.3 (2026-09-05)
- Update to latest version from paperless-ngx/paperless-ngx (changelog : https://github.com/paperless-ngx/paperless-ngx/releases)
## 3.1.0 (2026-08-29)
- Update to latest version from paperless-ngx/paperless-ngx (changelog : https://github.com/paperless-ngx/paperless-ngx/releases)

Some files were not shown because too many files have changed in this diff Show More