Skip to main content

Install Docker

This tutorial will walk you through the steps to install Docker on your machine.

Automated Installation

This will install the latest version of Docker on your system.

sudo curl -fsSL https://get.docker.com | sh

Manual Installation (Safer option)

This option will download, verify and install the latest version of Docker on your system.

curl -fsSL https://get.docker.com -o install-docker.sh

Next, run the script with --dry-run to verify the steps it executes

sh install-docker.sh --dry-run

Finally, run the script to install Docker:

sudo sh install-docker.sh