diff options
| author | Greg <supahgreg@users.noreply.github.com> | 2025-10-10 06:41:25 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-10 06:41:25 -0500 |
| commit | 26f1f67746850a3806b5f395ada3f478ca2b951b (patch) | |
| tree | 8129cbd2d0f083925ce41a5663dd9a94d8e2b703 | |
| parent | fa45a44311dc041529047e6ccaef29a591e512a1 (diff) | |
| parent | 729f595f20d5972e1fc25ae541b723bb0cf738b8 (diff) | |
Merge pull request #26 from burrow335/fix/update-container-image
Update images in docker-compose.yml
| -rw-r--r-- | docker-compose.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index ea11ca1bb..6ec016113 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,8 +4,6 @@ # please don't use this in production: it has no database persistence and maps to tt-rss source directly. # -version: '3' - services: db: image: postgres:15-alpine @@ -18,7 +16,7 @@ services: - POSTGRES_DB=${TTRSS_DB_NAME} app: - image: cthulhoo/ttrss-fpm-pgsql-static:latest + image: ghcr.io/tt-rss/tt-rss:latest environment: SKIP_RSYNC_ON_STARTUP: true build: @@ -33,7 +31,7 @@ services: - db updater: - image: cthulhoo/ttrss-fpm-pgsql-static:latest + image: ghcr.io/tt-rss/tt-rss:latest build: dockerfile: .docker/app/Dockerfile context: . @@ -47,7 +45,7 @@ services: command: /opt/tt-rss/updater.sh web-nginx: - image: cthulhoo/ttrss-web-nginx:latest + image: ghcr.io/tt-rss/tt-rss-web-nginx:latest build: dockerfile: .docker/web-nginx/Dockerfile context: . |