Blame
e05cb7 | Arpan S. | 2024-10-15 23:34:21 | 1 | # Docker |
2 | ||||
3 | ### Single Script Installer for Docker | |||
4 | Docker provides an official script for installing docker on debian based systems which installs all required packages including `docker` and `docker compose`. | |||
5 | ||||
6 | Follow the below steps to install docker. | |||
7 | ``` | |||
8 | curl -sSL https://get.docker.com/ | CHANNEL=stable bash | |||
9 | ``` | |||
10 | ||||
11 | The script might take a while depending on your internet speed and available system resources. | |||
12 | Once done, All we have to do is enable the docker daemon on systemctl. | |||
13 | ``` | |||
14 | systemctl enable --now docker | |||
15 | ``` |