From aee48ea8283a7375a6e2416e9c6f927f8215c4cc Mon Sep 17 00:00:00 2001 From: Murat Aslan <78961478+murataslan1@users.noreply.github.com> Date: Sun, 4 Jan 2026 19:41:25 +0300 Subject: [PATCH] fix(service): correct POSTGRES_HOST in freshrss (#7759) --- templates/compose/freshrss-with-postgresql.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/compose/freshrss-with-postgresql.yaml b/templates/compose/freshrss-with-postgresql.yaml index 015fbcea3..9915f99f5 100644 --- a/templates/compose/freshrss-with-postgresql.yaml +++ b/templates/compose/freshrss-with-postgresql.yaml @@ -14,7 +14,7 @@ services: - POSTGRES_DB=${POSTGRESQL_DATABASE:-freshrss} - POSTGRES_USER=${SERVICE_USER_POSTGRESQL} - POSTGRES_PASSWORD=${SERVICE_PASSWORD_POSTGRESQL} - - POSTGRES_HOST=postgresql + - POSTGRES_HOST=freshrss-db volumes: - freshrss-data:/var/www/FreshRSS/data - freshrss-extensions:/var/www/FreshRSS/extensions