From a4559e4638aa4488c2311054f015db3e38172226 Mon Sep 17 00:00:00 2001 From: Markus Date: Sun, 9 Nov 2025 23:45:35 +0100 Subject: [PATCH] updated wallabag to 2.6.14 --- apps/wallabag/config.json | 6 +++--- apps/wallabag/docker-compose.json | 11 ++++++----- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/apps/wallabag/config.json b/apps/wallabag/config.json index 13dca25..cfe721a 100644 --- a/apps/wallabag/config.json +++ b/apps/wallabag/config.json @@ -6,8 +6,8 @@ "dynamic_config": true, "id": "wallabag", "description": " self hostable application for saving web pages: Save and classify articles. Read them later.", - "tipi_version": 1, - "version": "2.6.13", + "tipi_version": 2, + "version": "2.6.14", "categories": ["utilities","media"], "short_desc": "read-it-later app", "author": "wallabag", @@ -16,5 +16,5 @@ "form_fields": [], "supported_architectures": ["arm64", "amd64"], "created_at": 1746825394706, - "updated_at": 1746825394706 + "updated_at": 1762728308503 } diff --git a/apps/wallabag/docker-compose.json b/apps/wallabag/docker-compose.json index 424052d..6491bf0 100644 --- a/apps/wallabag/docker-compose.json +++ b/apps/wallabag/docker-compose.json @@ -1,8 +1,9 @@ { + "schemaVersion": 2, "services": [ { "name": "wallabag", - "image": "wallabag/wallabag:2.6.13", + "image": "wallabag/wallabag:2.6.14", "isMain": true, "environment": { "SYMFONY__ENV__DATABASE_DRIVER": "pdo_sqlite", @@ -22,16 +23,16 @@ } ], "dependsOn": { - "redis": { + "valkey": { "condition": "service_started" } } }, { - "name": "redis", - "image": "redis:alpine", + "name": "valkey", + "image": "valkey:alpine", "healthCheck": { - "test": "CMD redis-cli ping", + "test": "CMD valkey-cli ping", "interval": "20s", "timeout": "3s" }