Skip to content

Instantly share code, notes, and snippets.

@naryal2580
Last active December 16, 2021 19:02
Show Gist options
  • Save naryal2580/dc524e1894137b50448c6892499f80c7 to your computer and use it in GitHub Desktop.
Save naryal2580/dc524e1894137b50448c6892499f80c7 to your computer and use it in GitHub Desktop.
Install docker in Kali Linux
#!/bin/bash
sudo apt update
sudo apt install docker.io -y
sudo systemctl enable docker --now
sudo usermod -aG docker $USER
echo "Clicking Yes will logout the current xfce-session."
zenity --question
if [[ $? == 0 ]] ; then
xfce4-session-logout --logout
else
exit 0
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment