summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsupahgreg <supahgreg@users.noreply.github.com>2025-10-05 19:47:40 +0000
committersupahgreg <supahgreg@users.noreply.github.com>2025-10-05 19:47:40 +0000
commit978c6fafdef0f6efd70f57cb1e86bd0a662188fd (patch)
tree10883ee171893cb68ba36e5bebe893cbd3613119
parenta912e98bd4fdaef2ff623c2c45536d560e92e901 (diff)
Update installation notes with new images, etc.
-rw-r--r--Installation-Notes.md25
1 files changed, 13 insertions, 12 deletions
diff --git a/Installation-Notes.md b/Installation-Notes.md
index 1695164..effcf64 100644
--- a/Installation-Notes.md
+++ b/Installation-Notes.md
@@ -1,9 +1,10 @@
# Installation Guide
-The only supported way to run tt-rss is under Docker.
+The recommended way to run tt-rss is under Docker.
-Due to the original tt-rss project and its infrastructure being discontinued, there are not currently
-"official" Docker images utilizing the code from https://github.com/supahgreg/tt-rss .
+The Docker images related to https://github.com/supahgreg/tt-rss are:
+* https://hub.docker.com/r/supahgreg/tt-rss
+* https://hub.docker.com/r/supahgreg/tt-rss-web-nginx
!!! notice
@@ -89,7 +90,7 @@ services:
- db:/var/lib/postgresql/data
app:
- image: cthulhoo/ttrss-fpm-pgsql-static:latest
+ image: supahgreg/tt-rss:latest
restart: unless-stopped
env_file:
- .env
@@ -101,7 +102,7 @@ services:
# optional, makes weekly backups of your install
# backups:
-# image: cthulhoo/ttrss-fpm-pgsql-static:latest
+# image: supahgreg/tt-rss:latest
# restart: unless-stopped
# env_file:
# - .env
@@ -113,7 +114,7 @@ services:
# command: /opt/tt-rss/dcron.sh -f
updater:
- image: cthulhoo/ttrss-fpm-pgsql-static:latest
+ image: supahgreg/tt-rss:latest
restart: unless-stopped
env_file:
- .env
@@ -125,7 +126,7 @@ services:
command: /opt/tt-rss/updater.sh
web-nginx:
- image: cthulhoo/ttrss-web-nginx:latest
+ image: supahgreg/tt-rss-web-nginx:latest
restart: unless-stopped
env_file:
- .env
@@ -144,9 +145,9 @@ volumes:
## FAQ
-### Your images won't run on Raspberry Pi!
+### Your Docker images won't run on X!
-Sorry, I only make and support AMD64 images, dealing with cross-platform buildx is just too much effort. You'll have to make your own images if you use ARM or 32bit platforms by using an override and running `docker-compose build`.
+You might need to build your own Docker images if you're on a platform without "official" images by using an override and running `docker-compose build`.
```yaml
# docker-compose.override.yml
@@ -154,7 +155,7 @@ version: '3'
services:
app:
- image: cthulhoo/ttrss-fpm-pgsql-static:latest
+ image: supahgreg/tt-rss:latest
build:
dockerfile: .docker/app/Dockerfile
context: https://github.com/supahgreg/tt-rss.git
@@ -162,13 +163,13 @@ services:
BUILDKIT_CONTEXT_KEEP_GIT_DIR: 1
web-nginx:
- image: cthulhoo/ttrss-web-nginx:latest
+ image: supahgreg/tt-rss-web-nginx:latest
build:
dockerfile: .docker/web-nginx/Dockerfile
context: https://github.com/supahgreg/tt-rss.git
```
-`BUILDKIT_CONTEXT_KEEP_GIT_DIR` build argument is needed to display tt-rss version properly. If that doesn't work for you (no BuildKit?) you'll have to resort to terrible hacks.
+`BUILDKIT_CONTEXT_KEEP_GIT_DIR` build argument is needed to display tt-rss version info properly. If that doesn't work for you (no BuildKit?) you'll have to resort to terrible hacks.
!!! warning