Horje
docker post installation steps linux 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
ERROR: Could not build wheels for numpy which use PEP 517 and cannot be installed directly Code Example ERROR: Could not build wheels for numpy which use PEP 517 and cannot be installed directly Code Example
restart xampp linux Code Example restart xampp linux Code Example
install wheel Code Example install wheel Code Example
ssh use other key file Code Example ssh use other key file Code Example
git move recent commit back to staged Code Example git move recent commit back to staged Code Example

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