# Issue After Docker Update: Unsupported Version Error

**URL:** https://meta.discourse.org/t/issue-after-docker-update-unsupported-version-error/344700
**Category:** Support
**Created:** [December 28, 2024, 10:32pm UTC](https://meta.discourse.org/t/issue-after-docker-update-unsupported-version-error/344700 "2024-12-28T22:32:11Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![derak](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/derak/32/214158_2.png) [@derak](https://meta.discourse.org/u/derak)
#### Post date: [December 28, 2024, 10:32pm UTC](https://meta.discourse.org/t/issue-after-docker-update-unsupported-version-error/344700/1 "2024-12-28T22:32:11Z")

</div>

Hi, I updated Docker through the “Upgrade” section. After that, I tried to update Discourse via the terminal (I use DigitalOcean’s Droplet Console). However, when running the command `./launcher rebuild app`, I get this error:

`ERROR: Docker version 19.03.13 not supported, please upgrade to at least 20.10.0, or recommended 24.0.7.`

But I had already done the update through the “Upgrade” admin interface on the website. Now nothing is working anymore. What could have gone wrong?

---

<div class="post-metadata">

### Author: ![pfaffman](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pfaffman/32/120154_2.png) [@pfaffman](https://meta.discourse.org/u/pfaffman)
#### Post date: [December 28, 2024, 10:41pm UTC](https://meta.discourse.org/t/issue-after-docker-update-unsupported-version-error/344700/2 "2024-12-28T22:41:28Z")

</div>

In the web interface you updated Discourse\_docker not docker itself.

```
apt update ; apt install docker-ce

```

Should upgrade docker, I think

You can check the version with

```
 docker --version

```

---

<div class="post-metadata">

### Author: ![derak](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/derak/32/214158_2.png) [@derak](https://meta.discourse.org/u/derak)
#### Post date: [December 28, 2024, 11:53pm UTC](https://meta.discourse.org/t/issue-after-docker-update-unsupported-version-error/344700/3 "2024-12-28T23:53:36Z")

</div>

Thank you. The command you provided did not work. I resolved it with the following solution from ChatGPT:

To update Docker on a DigitalOcean Droplet, follow these steps:

### 1. **Check the Current Version of Docker**

Run this command to see the currently installed Docker version:

```bash
docker --version

```

### 2. **Update the Operating System**

Make sure the operating system is up-to-date:

```bash
sudo apt update && sudo apt upgrade -y

```

### 3. **Uninstall the Old Version of Docker (if necessary)**

Remove any existing version of Docker:

```bash
sudo apt remove docker docker-engine docker.io containerd runc

```

### 4. **Install the Latest Version of Docker**

Follow these steps to install the latest version:

1. **Add Docker’s Official Repository:**

2. **Install Docker:**

### 5. **Verify the Installed Version**

Check if the new version has been installed:

```bash
docker --version

```

### 6. **Restart Docker Services**

After installation or upgrade, restart the Docker service:

```bash
sudo systemctl restart docker

```

### 7. **Update Discourse**

Once Docker is updated, try updating Discourse again:

```bash
cd /var/discourse
./launcher rebuild app

```

---

<div class="post-metadata">

### Author: ![BrianC](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/brianc/32/487568_2.png) [@BrianC](https://meta.discourse.org/u/BrianC)
#### Post date: [December 29, 2024, 4:23am UTC](https://meta.discourse.org/t/issue-after-docker-update-unsupported-version-error/344700/4 "2024-12-29T04:23:31Z")

</div>

ChatGPT to the rescue 😀

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [January 28, 2025, 4:23am UTC](https://meta.discourse.org/t/issue-after-docker-update-unsupported-version-error/344700/5 "2025-01-28T04:23:41Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
