Having a hard time installing Docker in your Ubuntu? Copy pasting multiple lines of code from the documentation? Then this guide is for you.
- Login to your Ubuntu server.
- Run the following commands.
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
The first command will download a script from docker itself.
The second command executes the downloaded script.
Grab a coffee and wait.
EZ. 🙂
This is great! Thanks