Docker
Версия от 06:15, 12 марта 2017; FireWolf (обсуждение | вклад) (Новая страница: «= Настройка для пользователя = http://askubuntu.com/questions/477551/how-can-i-use-docker-without-sudo/477554#477554 Add the docker group…»)
Настройка для пользователя
http://askubuntu.com/questions/477551/how-can-i-use-docker-without-sudo/477554#477554
Add the docker group if it doesn't already exist:
sudo groupadd docker
Add the connected user "${USER}" to the docker group. Change the user name to match your preferred user:
sudo gpasswd -a ${USER} docker
Restart the Docker daemon:
sudo service docker restart
If you are on Ubuntu 14.04-15.10* use docker.io instead:
sudo service docker.io restart