From f539ac9d3de6eb8146b3d37fe43c2b3436d0a128 Mon Sep 17 00:00:00 2001 From: jordan Date: Wed, 30 Aug 2023 08:13:43 +0100 Subject: [PATCH] Merge pull request #19 from graskaas/docker-fix Update Docker instructions to include user permissions --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 3a2e03c..89136b3 100644 --- a/README.md +++ b/README.md @@ -115,9 +115,12 @@ Running rgit in Docker is also simple, just mount the directory containing your ```bash docker run --mount type=bind,source=/path/to/my-repos,target=/git \ + --user $UID:$GID \ -it ghcr.io/w4/rgit:main ``` +**Note**: Take care to replace `$UID` and `$GID` with the UID and GID of the user that owns the directory containing your repositories or there will be errors! [See here](https://linuxhandbook.com/uid-linux/) to learn how to find the UID of a user. + #### Docker Compose An example `docker-compose.yml` is provided for those who prefer using Compose. To configure the UID and GID, the user is specified in `docker-compose.override.yml`. -- libgit2 1.7.2