# Running the Install Script

[Docker](https://www.docker.com/) provides a convenient script for quickly installing their software and getting it ready.

<p class="callout info">You can find the [official Docker installation guide](https://docs.docker.com/engine/install/debian/#install-using-the-convenience-script) on their website.</p>

## Preparation

First, we need to open our terminal to install a small application called *curl* that can be used to download files through the terminal.

Enter this command and hit enter to automatically install the curl software:

```bash
sudo apt-get install -y curl
```

<p class="callout warning">You will be prompted to enter your password.</p>

<table border="1" class="align-center" id="bkmrk-" style="border-collapse: collapse; width: 100%; border-width: 1px;"><colgroup><col style="width: 50%;"></col><col style="width: 50%;"></col></colgroup><tbody><tr><td>[![image.png](https://hub.subspace.services/uploads/images/gallery/2025-04/scaled-1680-/yk7image.png)](https://hub.subspace.services/uploads/images/gallery/2025-04/yk7image.png)</td><td>[![image.png](https://hub.subspace.services/uploads/images/gallery/2025-04/scaled-1680-/v72image.png)](https://hub.subspace.services/uploads/images/gallery/2025-04/v72image.png)

</td></tr></tbody></table>

## Installation

Now, enter the following command to use *curl* to download the script that installs Docker and it's dependencies:

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

[![image.png](https://hub.subspace.services/uploads/images/gallery/2025-04/scaled-1680-/TZ7image.png)](https://hub.subspace.services/uploads/images/gallery/2025-04/TZ7image.png)

Once the download is complete, you can enter this command to run the script we just downloaded:

```bash
sh get-docker.sh
```

[![image.png](https://hub.subspace.services/uploads/images/gallery/2025-04/scaled-1680-/v8Eimage.png)](https://hub.subspace.services/uploads/images/gallery/2025-04/v8Eimage.png)

The Docker setup process should proceed automatically and prompt you about further actions once it's finished. We do not need to follow these additional instructions.

[![image.png](https://hub.subspace.services/uploads/images/gallery/2025-04/scaled-1680-/BTMimage.png)](https://hub.subspace.services/uploads/images/gallery/2025-04/BTMimage.png)

We have successfully installed the Docker Container Engine on our server.