From 0a89db04fe62958283c17baa11893c6ad868bf9d Mon Sep 17 00:00:00 2001 From: William Delanoue Date: Sat, 23 Nov 2013 13:16:28 +0100 Subject: [PATCH] Better copy/paste :) --- docs/sources/use/basics.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sources/use/basics.rst b/docs/sources/use/basics.rst index 0b3fafced1..12160312ba 100644 --- a/docs/sources/use/basics.rst +++ b/docs/sources/use/basics.rst @@ -76,11 +76,11 @@ client commands. # Add the docker group if it doesn't already exist. sudo groupadd docker - # Add the user "ubuntu" to the docker group. + # Add the connected user "${USERNAME}" to the docker group. # Change the user name to match your preferred user. # You may have to logout and log back in again for # this to take effect. - sudo gpasswd -a ubuntu docker + sudo gpasswd -a ${USERNAME} docker # Restart the docker daemon. sudo service docker restart