Fix user variable in docker permissions command

This commit is contained in:
Rohan Thakkar 2025-12-26 03:10:43 -06:00 committed by GitHub
parent 0f37d56677
commit d44f0b64f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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.