From 7c4cdbbe76badbafa217689aa826b105e208aa84 Mon Sep 17 00:00:00 2001 From: sbgap Date: Tue, 3 Mar 2026 12:38:58 +0100 Subject: [PATCH 1/2] feat: add housekeeping for auto unshelve and auto unack --- config/templates/app/supervisord.conf.j2 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/templates/app/supervisord.conf.j2 b/config/templates/app/supervisord.conf.j2 index e2d4a282..9e3802b4 100644 --- a/config/templates/app/supervisord.conf.j2 +++ b/config/templates/app/supervisord.conf.j2 @@ -40,3 +40,9 @@ autostart=true autorestart=true redirect_stderr=true {%- endif %} + +[program:housekeeping] +command= bash -c "sleep 10 && alerta housekeeping" +autostart=true +autorestart=true +redirect_stderr=true From 3dfa649ee5b1d9608aa36ae6af8a8da8bcbcfee2 Mon Sep 17 00:00:00 2001 From: sbgap Date: Mon, 13 Apr 2026 13:07:39 +0200 Subject: [PATCH 2/2] chore: update client version to v4.0.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9dc6e1c0..863a4fd1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ ARG VERSION ENV GAPIT_VERSION=${RELEASE} ENV SERVER_VERSION=${RELEASE} -ENV CLIENT_VERSION=3.2.0 +ENV CLIENT_VERSION=4.0.0 ENV WEBUI_VERSION=${RELEASE} ENV NGINX_WORKER_PROCESSES=1