Horje
add docker to group Code Example
docker to sudoers
# 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
docker post installation steps linux
# Creates docker group
sudo groupadd docker

# Add your user to the docker group
sudo usermod -aG docker $USER

# Log out and log back in so that your group membership is re-evaluated
# GNOME example
gnome-session-quit
add to docker group
sudo groupadd docker
sudo usermod -aG docker $USER

#Then restart pc or if on linux desktop:

newgrp docker 
add docker to group
sudo groupadd docker
sudo usermod -aG docker $USER
newgrp docker 




Shell

Related
install virtualbox ubuntu 20 wsl command line Code Example install virtualbox ubuntu 20 wsl command line Code Example
auto clean ubuntu Code Example auto clean ubuntu Code Example
check public ip address in terminal Code Example check public ip address in terminal Code Example
install iptables ubuntu Code Example install iptables ubuntu Code Example
release a port in mac Code Example release a port in mac Code Example

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