From f70fbe9705cd0bfbe4414621e62ca2db7005ca19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?hugoo=20=E0=BC=84=20=CB=9A=EF=BD=A1=E2=8B=86=E2=98=85?= <69076992+hugoovf@users.noreply.github.com> Date: Sun, 23 Aug 2026 18:44:19 +0200 Subject: [PATCH] Portainer Agent: use alpine-sts upstream image (#3011) * fix(portainer-agent): use alpine-sts upstream image * fix(portainer-agent): align STS updater versioning --- portainer_agent/CHANGELOG.md | 5 +++++ portainer_agent/Dockerfile | 2 +- portainer_agent/config.yaml | 2 +- portainer_agent/updater.json | 4 ++-- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/portainer_agent/CHANGELOG.md b/portainer_agent/CHANGELOG.md index bdfa4e309e..d56a92025b 100644 --- a/portainer_agent/CHANGELOG.md +++ b/portainer_agent/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.44.0 (2026-08-23) + +- Fix: Use `portainer/agent:alpine-sts` to match the STS release channel configured in `updater.json` +- Fix: Align add-on versioning with Portainer STS releases + ## 2025.12.7 (2026-08-23) - Fix: Docker reported the addon as `unhealthy` in Portainer. The healthcheck script could never run because its shebang required the s6-overlay environment, which this addon's entrypoint does not set up (https://github.com/alexbelgium/hassio-addons/issues/3002) diff --git a/portainer_agent/Dockerfile b/portainer_agent/Dockerfile index 6cf096495a..63a1088850 100644 --- a/portainer_agent/Dockerfile +++ b/portainer_agent/Dockerfile @@ -18,7 +18,7 @@ ARG BUILD_FROM # Get agent -FROM portainer/agent:alpine as original_agent +FROM portainer/agent:alpine-sts as original_agent ENV PORTAINER_AGENT_ARGS="" # Build using base diff --git a/portainer_agent/config.yaml b/portainer_agent/config.yaml index 80248c9b13..ef1972ca75 100644 --- a/portainer_agent/config.yaml +++ b/portainer_agent/config.yaml @@ -41,4 +41,4 @@ schema: slug: portainer_agent udev: true url: https://github.com/alexbelgium/hassio-addons -version: "2025.12.7" +version: "2.44.0" \ No newline at end of file diff --git a/portainer_agent/updater.json b/portainer_agent/updater.json index feaa9bb70b..ca391504d3 100644 --- a/portainer_agent/updater.json +++ b/portainer_agent/updater.json @@ -1,6 +1,6 @@ { - "github_tagfilter": "alpine", - "last_update": "24-12-2025", + "github_tagfilter": "sts", + "last_update": "23-08-2026", "repository": "alexbelgium/hassio-addons", "slug": "portainer_agent", "source": "dockerhub",