summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Installation-Guide.md20
1 files changed, 17 insertions, 3 deletions
diff --git a/Installation-Guide.md b/Installation-Guide.md
index 4aebd8b..07216e5 100644
--- a/Installation-Guide.md
+++ b/Installation-Guide.md
@@ -1,8 +1,10 @@
The main (and recommended) way to run tt-rss is under Docker.
-Docker images for https://github.com/tt-rss/tt-rss are built (for `linux/amd64` and `linux/arm64`)
-and published to Docker Hub ([via GitHub Actions](https://github.com/tt-rss/tt-rss/actions/workflows/publish.yml))
-as [supahgreg/tt-rss](https://hub.docker.com/r/supahgreg/tt-rss) and [supahgreg/tt-rss-web-nginx](https://hub.docker.com/r/supahgreg/tt-rss-web-nginx).
+Docker images for https://github.com/tt-rss/tt-rss are being built and published
+([via GitHub Actions](https://github.com/tt-rss/tt-rss/actions/workflows/publish.yml)) to:
+* Docker Hub (as [supahgreg/tt-rss](https://hub.docker.com/r/supahgreg/tt-rss/) and [supahgreg/tt-rss-web-nginx](https://hub.docker.com/r/supahgreg/tt-rss-web-nginx/)).
+* GitHub Container Registry (as [ghcr.io/tt-rss/tt-rss](https://github.com/orgs/tt-rss/packages/container/package/tt-rss)
+ and [ghcr.io/tt-rss/tt-rss-web-nginx](https://github.com/orgs/tt-rss/packages/container/package/tt-rss-web-nginx)).
> [!WARNING]
> Podman is not Docker. Please don't report issues related to running tt-rss when using Podman or Podman Compose.
@@ -93,6 +95,8 @@ services:
app:
image: supahgreg/tt-rss:latest
+ # or
+ # image: ghcr.io/tt-rss/tt-rss:latest
restart: unless-stopped
env_file:
- .env
@@ -105,6 +109,8 @@ services:
# optional, makes weekly backups of your install
# backups:
# image: supahgreg/tt-rss:latest
+# # or
+# # image: ghcr.io/tt-rss/tt-rss:latest
# restart: unless-stopped
# env_file:
# - .env
@@ -117,6 +123,8 @@ services:
updater:
image: supahgreg/tt-rss:latest
+ # or
+ # image: ghcr.io/tt-rss/tt-rss:latest
restart: unless-stopped
env_file:
- .env
@@ -129,6 +137,8 @@ services:
web-nginx:
image: supahgreg/tt-rss-web-nginx:latest
+ # or
+ # image: ghcr.io/tt-rss/tt-rss-web-nginx:latest
restart: unless-stopped
env_file:
- .env
@@ -157,6 +167,8 @@ build your own Docker images by using an override and running `docker compose bu
services:
app:
image: supahgreg/tt-rss:latest
+ # or
+ # image: ghcr.io/tt-rss/tt-rss:latest
build:
dockerfile: .docker/app/Dockerfile
context: https://github.com/tt-rss/tt-rss.git
@@ -165,6 +177,8 @@ services:
web-nginx:
image: supahgreg/tt-rss-web-nginx:latest
+ # or
+ # image: ghcr.io/tt-rss/tt-rss-web-nginx:latest
build:
dockerfile: .docker/web-nginx/Dockerfile
context: https://github.com/tt-rss/tt-rss.git