diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-06 18:51:56 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-06 18:51:56 +0000 |
| commit | 358f480ea8f14d9db8a933e84f3339e533c626fb (patch) | |
| tree | e2906ed47435e2cdc84523d55df16dc597b6849b /Installation-Guide.md | |
| parent | 83140cfbcba7e42202b05c820066d2f2e5a45fef (diff) | |
Switch links to the 'tt-rss' GitHub organization.
Diffstat (limited to 'Installation-Guide.md')
| -rw-r--r-- | Installation-Guide.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Installation-Guide.md b/Installation-Guide.md index 2f79155..31aba41 100644 --- a/Installation-Guide.md +++ b/Installation-Guide.md @@ -1,6 +1,6 @@ The main (and recommended) way to run tt-rss is under Docker. -The Docker images related to https://github.com/supahgreg/tt-rss are: +The Docker images related to https://github.com/tt-rss/tt-rss are: * https://hub.docker.com/r/supahgreg/tt-rss * https://hub.docker.com/r/supahgreg/tt-rss-web-nginx @@ -159,7 +159,7 @@ services: image: supahgreg/tt-rss:latest build: dockerfile: .docker/app/Dockerfile - context: https://github.com/supahgreg/tt-rss.git + context: https://github.com/tt-rss/tt-rss.git args: BUILDKIT_CONTEXT_KEEP_GIT_DIR: 1 @@ -167,7 +167,7 @@ services: image: supahgreg/tt-rss-web-nginx:latest build: dockerfile: .docker/web-nginx/Dockerfile - context: https://github.com/supahgreg/tt-rss.git + context: https://github.com/tt-rss/tt-rss.git ``` `BUILDKIT_CONTEXT_KEEP_GIT_DIR` build argument is needed to display tt-rss version info properly. @@ -222,11 +222,11 @@ TTRSS_SELF_URL_PATH=http://example.com/tt-rss Don't use quotes around values. Note the prefix (`TTRSS_`) before the value. -Look [here](https://github.com/supahgreg/tt-rss/wiki/Global-Config) for more information. +Look [here](https://github.com/tt-rss/tt-rss/wiki/Global-Config) for more information. #### Container options -Some options, but not all, are mentioned in `.env-dist`. You can see all available options in the [Dockerfile](https://github.com/supahgreg/tt-rss/blob/main/.docker/app/Dockerfile). +Some options, but not all, are mentioned in `.env-dist`. You can see all available options in the [Dockerfile](https://github.com/tt-rss/tt-rss/blob/main/.docker/app/Dockerfile). ### How do I customize the YML without committing my changes to git? |