From d44f0b64f8bbb61b104af3999687bd883c17e39d Mon Sep 17 00:00:00 2001 From: Rohan Thakkar <95547044+r-thak@users.noreply.github.com> Date: Fri, 26 Dec 2025 03:10:43 -0600 Subject: [PATCH] Fix user variable in docker permissions command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2454122..430acc8 100644 --- a/README.md +++ b/README.md @@ -738,7 +738,7 @@ See 'docker run --help'. This means your docker daemon is not running or is otherwise not accessible. -`pgrep dockerd` should return nothing. If you get a PID, you likely do not have permissions to use docker. If this is the case, run `sudo usermod -aG docker && newgrp docker` +`pgrep dockerd` should return nothing. If you get a PID, you likely do not have permissions to use docker. If this is the case, run `sudo usermod -aG docker $USER && newgrp docker` Therefore, you have a few choices.