From 31fb14491a81ddf11e2e43d44f9380fd9e354a13 Mon Sep 17 00:00:00 2001 From: Spencer Killen Date: Tue, 21 Mar 2023 11:43:19 -0600 Subject: [PATCH] Update 'DockerHelp.md' --- DockerHelp.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DockerHelp.md b/DockerHelp.md index 2142e2d..990766f 100644 --- a/DockerHelp.md +++ b/DockerHelp.md @@ -4,9 +4,9 @@ If you get permission errors when running `docker version`, follow these instruc Access: (0660/srw-rw----) Uid: ( 0/ root) Gid: ( 1003/ root) ``` The above tells you that the docker socket belongs to the group with GID 1003 (root) and that the group has neither read nor write permissions. -2. Change the socket's group to be yours with `sudo chgrp "$USER" /var/run/docker.sock`. Confirm this change by running `stat` again. -3. Give the group read and write privileges with `sudo chmod g+rw /var/run/docker.sock` -4. Confirm that you can run `docker version` without permission errors. +1. Change the socket's group to be yours with `sudo chgrp "$USER" /var/run/docker.sock`. Confirm this change by running `stat` again. +1. Give the group read and write privileges with `sudo chmod g+rw /var/run/docker.sock` +1. Confirm that you can run `docker version` without permission errors.