feat(ttrss): Update to new maintainer and PostgreSQL 17
This commit is contained in:
@@ -41,6 +41,7 @@ services:
|
|||||||
TTRSS_DB_NAME: "${TTRSS_DB_NAME}"
|
TTRSS_DB_NAME: "${TTRSS_DB_NAME}"
|
||||||
TTRSS_DB_PASS: "${TTRSS_DB_PASS}"
|
TTRSS_DB_PASS: "${TTRSS_DB_PASS}"
|
||||||
TTRSS_DB_USER: "${TTRSS_DB_USER}"
|
TTRSS_DB_USER: "${TTRSS_DB_USER}"
|
||||||
|
TTRSS_DAEMON_UPDATE_LOGIN_LIMIT: "${TTRSS_DAEMON_UPDATE_LOGIN_LIMIT}"
|
||||||
TTRSS_FORCE_ARTICLE_PURGE: "${TTRSS_FORCE_ARTICLE_PURGE}"
|
TTRSS_FORCE_ARTICLE_PURGE: "${TTRSS_FORCE_ARTICLE_PURGE}"
|
||||||
TTRSS_SINGLE_USER_MODE: "${TTRSS_SINGLE_USER_MODE}"
|
TTRSS_SINGLE_USER_MODE: "${TTRSS_SINGLE_USER_MODE}"
|
||||||
TTRSS_SELF_URL_PATH: "${TTRSS_SELF_URL_PATH}"
|
TTRSS_SELF_URL_PATH: "${TTRSS_SELF_URL_PATH}"
|
||||||
@@ -72,6 +73,7 @@ services:
|
|||||||
TTRSS_DB_NAME: "${TTRSS_DB_NAME}"
|
TTRSS_DB_NAME: "${TTRSS_DB_NAME}"
|
||||||
TTRSS_DB_PASS: "${TTRSS_DB_PASS}"
|
TTRSS_DB_PASS: "${TTRSS_DB_PASS}"
|
||||||
TTRSS_DB_USER: "${TTRSS_DB_USER}"
|
TTRSS_DB_USER: "${TTRSS_DB_USER}"
|
||||||
|
TTRSS_DAEMON_UPDATE_LOGIN_LIMIT: "${TTRSS_DAEMON_UPDATE_LOGIN_LIMIT}"
|
||||||
TTRSS_FORCE_ARTICLE_PURGE: "${TTRSS_FORCE_ARTICLE_PURGE}"
|
TTRSS_FORCE_ARTICLE_PURGE: "${TTRSS_FORCE_ARTICLE_PURGE}"
|
||||||
TTRSS_SINGLE_USER_MODE: "${TTRSS_SINGLE_USER_MODE}"
|
TTRSS_SINGLE_USER_MODE: "${TTRSS_SINGLE_USER_MODE}"
|
||||||
TTRSS_SELF_URL_PATH: "${TTRSS_SELF_URL_PATH}"
|
TTRSS_SELF_URL_PATH: "${TTRSS_SELF_URL_PATH}"
|
||||||
|
|||||||
29
compose.yaml
29
compose.yaml
@@ -1,13 +1,6 @@
|
|||||||
# This Compose file comes from https://tt-rss.org/wiki/InstallationNotes/ last retrieved on 2025-02-11.
|
|
||||||
|
|
||||||
version: '3'
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
# see FAQ entry below if upgrading from a different PostgreSQL major version (e.g. 12 to 15):
|
|
||||||
# https://tt-rss.org/wiki/InstallationNotes/#i-got-the-updated-compose-file-above-and-now-my-database-keeps-restarting
|
|
||||||
db:
|
db:
|
||||||
image: postgres:15-alpine
|
image: postgres:17-alpine
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
@@ -17,9 +10,13 @@ services:
|
|||||||
- POSTGRES_DB=${TTRSS_DB_NAME}
|
- POSTGRES_DB=${TTRSS_DB_NAME}
|
||||||
volumes:
|
volumes:
|
||||||
- db:/var/lib/postgresql/data
|
- db:/var/lib/postgresql/data
|
||||||
|
# or, if 18+
|
||||||
|
# - db:/var/lib/postgresql
|
||||||
|
|
||||||
app:
|
app:
|
||||||
image: cthulhoo/ttrss-fpm-pgsql-static:latest
|
image: supahgreg/tt-rss:latest
|
||||||
|
# or
|
||||||
|
# image: ghcr.io/tt-rss/tt-rss:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
@@ -31,7 +28,9 @@ services:
|
|||||||
|
|
||||||
# optional, makes weekly backups of your install
|
# optional, makes weekly backups of your install
|
||||||
# backups:
|
# backups:
|
||||||
# image: cthulhoo/ttrss-fpm-pgsql-static:latest
|
# image: supahgreg/tt-rss:latest
|
||||||
|
# # or
|
||||||
|
# # image: ghcr.io/tt-rss/tt-rss:latest
|
||||||
# restart: unless-stopped
|
# restart: unless-stopped
|
||||||
# env_file:
|
# env_file:
|
||||||
# - .env
|
# - .env
|
||||||
@@ -43,7 +42,9 @@ services:
|
|||||||
# command: /opt/tt-rss/dcron.sh -f
|
# command: /opt/tt-rss/dcron.sh -f
|
||||||
|
|
||||||
updater:
|
updater:
|
||||||
image: cthulhoo/ttrss-fpm-pgsql-static:latest
|
image: supahgreg/tt-rss:latest
|
||||||
|
# or
|
||||||
|
# image: ghcr.io/tt-rss/tt-rss:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
@@ -55,7 +56,9 @@ services:
|
|||||||
command: /opt/tt-rss/updater.sh
|
command: /opt/tt-rss/updater.sh
|
||||||
|
|
||||||
web-nginx:
|
web-nginx:
|
||||||
image: cthulhoo/ttrss-web-nginx:latest
|
image: supahgreg/tt-rss-web-nginx:latest
|
||||||
|
# or
|
||||||
|
# image: ghcr.io/tt-rss/tt-rss-web-nginx:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
@@ -69,4 +72,4 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
db:
|
db:
|
||||||
app:
|
app:
|
||||||
backups:
|
backups:
|
||||||
|
|||||||
Reference in New Issue
Block a user