Install Docker in Kali Linux with simple steps
Hello Guys! I'm 101Programmer, In this post, I'm going to show a simple step installation of Docker in Kali Linux machine.
So, What is Docker?
Docker is an open-sourced software as a service platform used to build, deploy, ship applications.
How to install?
To install docker on Kali Linux by two packages- which is docker and docker.io. I going to install by docker.io package.
sudo apt update
sudo apt install -y docker.io
sudo systemctl enable docker --now
docker --version
The above command-line, which is shows the docker is currently installed and its version are.
sudo usermod -aG docker $USER
The above command-line, which is add the current user to the docker group, by doing this no need to provide - sudo
0 Comments