浏览代码

Fixed error in group add example

There is no ${USERNAME} in bash, only ${USER}
David Mcanulty 11 年之前
父节点
当前提交
fc559d9992
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      docs/sources/use/basics.rst

+ 2 - 2
docs/sources/use/basics.rst

@@ -78,11 +78,11 @@ client commands.
   # Add the docker group if it doesn't already exist.
   # Add the docker group if it doesn't already exist.
   sudo groupadd docker
   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.
   # Change the user name to match your preferred user.
   # You may have to logout and log back in again for
   # You may have to logout and log back in again for
   # this to take effect.
   # this to take effect.
-  sudo gpasswd -a ${USERNAME} docker
+  sudo gpasswd -a ${USER} docker
 
 
   # Restart the docker daemon.
   # Restart the docker daemon.
   sudo service docker restart
   sudo service docker restart