Install Docker in your Ubuntu - Debian - Raspberry Pi, Fedora
Docker is really awesome, and nowadays it is essential for almost any development project, for a full-stack developer it is a key skill.
so, to install it in your Linux - Debian the easiest way is to use the official script:
wget https://get.docker.com -O get-docker.shafter getting the script you should execute as root:
sudo sh get-docker.shyou should create the docker group:
sudo groupadd docker
sudo usermod -aG docker $USERwith those commands, you will be able to run docker without sudo.
IMPORTANT: don't forget to restart your terminal session to apply changes to your user.
and that is all.
Comments ()