Merge pull request #3460 from tsaavik/patch-1

Fixed error in group add example
This commit is contained in:
Andy Rothfusz 2014-01-08 15:45:23 -08:00
commit c45cd9174e

View file

@ -78,11 +78,11 @@ client commands.
# Add the docker group if it doesn't already exist.
sudo groupadd docker
# Add the connected user "${USERNAME}" to the docker group.
# Add the connected user "${USER}" 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 ${USERNAME} docker
sudo gpasswd -a ${USER} docker
# Restart the docker daemon.
sudo service docker restart