From 0e7280ec229755e4c237b4e41198efe7fc7922d7 Mon Sep 17 00:00:00 2001 From: "Max T. Kristiansen" Date: Sun, 8 Sep 2024 18:54:11 +0200 Subject: [PATCH] fix(docs): add correct registry to Docker image tags --- docs/docs/getting-started/installation.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/getting-started/installation.mdx b/docs/docs/getting-started/installation.mdx index 6b21bb6..6e3629c 100644 --- a/docs/docs/getting-started/installation.mdx +++ b/docs/docs/getting-started/installation.mdx @@ -12,7 +12,7 @@ Lists all the available options for installing/building Fetcharr. Some of these :::warning -**Fetcharr is still early in development.** If you would like to help test the bleeding edge, please use the image `fetcharr/fetcharr:develop`! +**Fetcharr is still early in development.** If you would like to help test the bleeding edge, please use the image `ghcr.io/fetcharr/fetcharr:develop`! ::: @@ -34,7 +34,7 @@ Be sure to replace `/path/to/appdata/config` with a valid host directory path. I -e TZ=Europe/Copenhagen \ -v /path/to/appdata/config:/config \ --restart unless-stopped \ - fetcharr/fetcharr:latest + ghcr.io/fetcharr/fetcharr:latest ``` @@ -43,7 +43,7 @@ Be sure to replace `/path/to/appdata/config` with a valid host directory path. I ```yaml title="compose.yaml" services: fetcharr: - image: fetcharr/fetcharr:latest + image: ghcr.io/fetcharr/fetcharr:latest container_name: fetcharr environment: - TZ=Europe/Copenhagen @@ -84,4 +84,4 @@ Afterwards, build the Docker image using [NUKE](https://nuke.build): You don't need to have NUKE installed for `build.cmd` to work. -::: \ No newline at end of file +:::