From 1cd05e5b6152b58437ca23fcfca58007ed0fa2d8 Mon Sep 17 00:00:00 2001 From: Julian Labus <353-BELzEBUB@users.noreply.gitlab.tt-rss.org> Date: Wed, 13 Aug 2025 13:38:33 +0200 Subject: [PATCH] Add update-ca-certificates to updater.sh --- .docker/app/updater.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.docker/app/updater.sh b/.docker/app/updater.sh index 561f390d7..c34cf5225 100644 --- a/.docker/app/updater.sh +++ b/.docker/app/updater.sh @@ -18,6 +18,8 @@ if ! id app; then adduser -D -h $APP_INSTALL_BASE_DIR -G app -u $OWNER_UID app fi +update-ca-certificates || true + # TODO this should do a reasonable amount of attempts and terminate with an error while ! pg_isready -h $TTRSS_DB_HOST -U $TTRSS_DB_USER -p $TTRSS_DB_PORT; do echo waiting until $TTRSS_DB_HOST is ready...