Horje
docker to sudoers 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




Shell

Related
check active ssh connections on linux Code Example check active ssh connections on linux Code Example
how to delete a package in ubuntu Code Example how to delete a package in ubuntu Code Example
intellij snap Code Example intellij snap Code Example
how to run docker without sudo Code Example how to run docker without sudo Code Example
laravel install ui bootstrap with auth Code Example laravel install ui bootstrap with auth Code Example

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