From e648fb5a9948e9663e7a65776c66dad8fe514b03 Mon Sep 17 00:00:00 2001 From: Sylvain Date: Mon, 9 Sep 2019 17:54:41 +0200 Subject: [PATCH] fixes typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a52dda3f7..eeb815c66 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ This procedure is not easy to follow so if you don't need to write some code for 5. Add your current user to the docker group, to allow using docker without `sudo`. ```bash # add the docker group if it doesn't already exist - sudo groupadd doker + sudo groupadd docker # add the current user to the docker group sudo usermod -aG docker $(whoami) # restart to validate changes