Skip to content

Commit aa7657c

Browse files
Updated downgrade guide
1 parent da009b1 commit aa7657c

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

docs/.vitepress/config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export default defineConfig({
8888
{ text: 'Usage', link: '/get-started/usage' },
8989
{ text: 'Installation', link: '/get-started/installation' },
9090
{ text: 'Upgrade', link: '/get-started/upgrade' },
91-
{ text: 'Downgrade', link: '/downgrade' },
91+
{ text: 'Downgrade', link: '/get-started/downgrade' },
9292
{ text: 'Uninstallation', link: '/uninstallation' },
9393
],
9494
},
Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,25 @@
22
title: Downgrading Coolify
33
---
44

5-
# Downgrading Coolify
6-
If you're using [Coolify Cloud ↗](https://coolify.io/pricing/), please note that you **cannot** downgrade the version of Coolify, as the cloud instances are managed by the [Core Team ↗](/resource/team). If you are facing any issues, please contact [support ↗](/support).
5+
<ZoomableImage src="/docs/images/get-started/downgrade-banner.webp" />
76

8-
The following instructions are for those who are self-hosting Coolify and wish to downgrade their instance.
7+
<br />
98

10-
If you're experiencing issues with the latest version of Coolify, you can easily downgrade to the previous version. Follow the steps below to perform a downgrade on your self-hosted instance.
9+
If you're using [Coolify Cloud ↗](https://coolify.io/pricing/), the Coolify team handles all updates so you **cannot** downgrade the version of Coolify. If you are facing any issues, please contact [support ↗](/get-started/support).
1110

12-
::: danger CAUTION!!
13-
**Downgrading can introduce issues, so it is recommended to test the downgrade process in a staging environment before applying it to your production server.**
11+
12+
For those who **self-host** Coolify, you can easily downgrade to the previous version. Follow the steps below to perform a downgrade on to a previous version.
13+
14+
:::danger **Backup First!**
15+
> **Always back up your Coolify data before performing an downgrade.**
16+
> **Downgrading can introduce issues that can be difficult to fix.**
1417
:::
1518

1619

20+
1721
The Downgrade process involves the following three steps:
1822
- [Disable Auto Update](#_1-disable-auto-update)
19-
- [Login to the Server via SSH](#_2-login-to-your-server-via-ssh)
23+
- [Login to Your Server via SSH](#_2-login-to-your-server-via-ssh)
2024
- [Execute the Downgrade Command](#_3-execute-the-downgrade-command)
2125

2226

@@ -29,7 +33,7 @@ Before downgrading, it's important to disable the Auto Update feature to prevent
2933

3034
3. In the Settings menu, disable the **Auto Update** feature.
3135

32-
<ZoomableImage src="/docs/images/get-started/upgrade-disable-auto-update.webp" />
36+
<ZoomableImage src="/docs/images/get-started/upgrade/disable-auto-update.webp" />
3337

3438
::: warning Important!
3539
Disabling auto-update is essential, as it ensures that Coolify doesn’t override your downgrade with a newer version.
@@ -43,13 +47,13 @@ Next, you need to SSH into your server to execute the downgrade command.
4347
## 3. Execute the Downgrade Command
4448
To downgrade Coolify to the desired version, run the following command in your terminal:
4549
```sh
46-
curl -fsSL https://cdn.coollabs.io/coolify/install.sh | sudo bash -s 4.0.0-beta.369
50+
curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash -s 4.0.0-beta.369
4751
```
4852
Replace `4.0.0-beta.369` with the version number you want to downgrade to.
4953

5054
For example, you can downgrade to `4.0.0-beta.333` or any previous version.
5155

52-
::: info 📌 Info
56+
::: warning Note
5357
Double-check the version number you are specifying to ensure you are downgrading to the correct version. You can check the Coolify [release notes ↗](https://github.com/coollabsio/coolify/releases) for version details.
5458
:::
5559

13.2 KB
Loading

nginx/redirects.conf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,5 @@ location = /api/operations/deploy-by-tag-or-uuid { return 301 /docs/api-referenc
9090
location = /what-is-coolify { return 301 /docs/get-started/introduction; }
9191
location = /cloud-vs-selfhost { return 301 /docs/get-started/usage; }
9292
location = /installation { return 301 /docs/get-started/installation; }
93-
location = /upgrade { return 301 /docs/get-started/upgrade; }
93+
location = /upgrade { return 301 /docs/get-started/upgrade; }
94+
location = /downgrade { return 301 /docs/get-started/downgrade; }

0 commit comments

Comments
 (0)