fd Installing Docker on Linux is simple just follow the instructions on Docker.io website documents or search on Google with mentioning your Linux distro.
Let me explain here, how I am installing Docker on Kali Linux by SSH.
First connect your Kali Linux server with SSH connection by PuTTY or any CLI terminal.
Before run docker command, please first run - sudo apt update
Please type your password if it is asking, to avoid this run - sudo su before running sudo apt update.
Now let's run the docker installation command - apt install -y docker.io
Enable docker by - systemctl enable docker --now
Check if docker installed successfully - docker -v and then docker ps
If you see the message like above image, that means docker has installed successfully on your Kali Linux.
And if you see something else, don't worry try to figure it out by Googling or put comment I will never let you struggling....
Comments
Post a Comment