From 1fb3482ea4e55475388bcba6e91f982eb31d855e Mon Sep 17 00:00:00 2001 From: Kieran Eglin Date: Sun, 24 Mar 2024 15:30:39 -0700 Subject: [PATCH] Added GHCR to README --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f57c059..f7d6243 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,9 @@ Simply search for Pinchflat in the Community Apps store! 1. Create two directories on your host machine: one for storing config and one for storing downloaded media. Make sure they're both writable by the user running the Docker container. 2. Prepare the docker image in one of the two ways below: - - **From Docker Hub:** `docker pull keglin/pinchflat:latest`, or; - - **Building locally:** `docker build . --file selfhosted.Dockerfile -t keglin/pinchflat:latest` + - **From GHCR:** `docker pull ghcr.io/kieraneglin/pinchflat:latest` + - NOTE: also available on Docker Hub at `keglin/pinchflat:latest` + - **Building locally:** `docker build . --file selfhosted.Dockerfile -t ghcr.io/kieraneglin/pinchflat:latest` 3. Run the container: ```bash @@ -76,7 +77,7 @@ docker run \ -p 8945:8945 \ -v /host/path/to/config:/config \ -v /host/path/to/downloads:/downloads \ - keglin/pinchflat:latest + ghcr.io/kieraneglin/pinchflat:latest ``` NOTE: it's recommended to not run the container as root. Doing so can create permission issues if other apps need to work with the downloaded media. If you need to run any command as root, you can run `su` from the container's shell as there is no password set for the root user.