Update images in docker-compose.yml

This commit is contained in:
burrow335 2025-10-10 09:35:37 +00:00
parent fa45a44311
commit 729f595f20

View File

@ -4,8 +4,6 @@
# please don't use this in production: it has no database persistence and maps to tt-rss source directly. # please don't use this in production: it has no database persistence and maps to tt-rss source directly.
# #
version: '3'
services: services:
db: db:
image: postgres:15-alpine image: postgres:15-alpine
@ -18,7 +16,7 @@ services:
- POSTGRES_DB=${TTRSS_DB_NAME} - POSTGRES_DB=${TTRSS_DB_NAME}
app: app:
image: cthulhoo/ttrss-fpm-pgsql-static:latest image: ghcr.io/tt-rss/tt-rss:latest
environment: environment:
SKIP_RSYNC_ON_STARTUP: true SKIP_RSYNC_ON_STARTUP: true
build: build:
@ -33,7 +31,7 @@ services:
- db - db
updater: updater:
image: cthulhoo/ttrss-fpm-pgsql-static:latest image: ghcr.io/tt-rss/tt-rss:latest
build: build:
dockerfile: .docker/app/Dockerfile dockerfile: .docker/app/Dockerfile
context: . context: .
@ -47,7 +45,7 @@ services:
command: /opt/tt-rss/updater.sh command: /opt/tt-rss/updater.sh
web-nginx: web-nginx:
image: cthulhoo/ttrss-web-nginx:latest image: ghcr.io/tt-rss/tt-rss-web-nginx:latest
build: build:
dockerfile: .docker/web-nginx/Dockerfile dockerfile: .docker/web-nginx/Dockerfile
context: . context: .