Horje
how to run docker without sudo Code Example
how to run docker without sudo
# my case solution
sudo setfacl -m user:$USER:rw /var/run/docker.sock

#other solution
sudo usermod -aG docker $USER

#an other solution
sudo groupadd docker
sudo gpasswd -a $USER docker
docker run hello-world
make docker sudo less
$ sudo groupadd docker
$ sudo usermod -aG docker $USER
$ newgrp docker 




Shell

Related
laravel install ui bootstrap with auth Code Example laravel install ui bootstrap with auth Code Example
cat ~/.ssh/id_rsa.pub Code Example cat ~/.ssh/id_rsa.pub Code Example
get git username and email Code Example get git username and email Code Example
how to install pipenv on mac Code Example how to install pipenv on mac Code Example
git proxy Code Example git proxy Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
16