Skip to content

Commit 7b48a08

Browse files
Updated uninstallation guide
1 parent aa7657c commit 7b48a08

File tree

4 files changed

+22
-18
lines changed

4 files changed

+22
-18
lines changed

docs/.vitepress/config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default defineConfig({
8989
{ text: 'Installation', link: '/get-started/installation' },
9090
{ text: 'Upgrade', link: '/get-started/upgrade' },
9191
{ text: 'Downgrade', link: '/get-started/downgrade' },
92-
{ text: 'Uninstallation', link: '/uninstallation' },
92+
{ text: 'Uninstallation', link: '/get-started/uninstallation' },
9393
],
9494
},
9595
{
Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22
title: Uninstalling Coolify
33
---
44

5-
# Uninstalling Coolify
6-
If you're using [Coolify Cloud ↗](https://coolify.io/pricing/), you don't need to uninstall Coolify, as the instance is hosted on servers managed by the [Core Team ↗](/resource/team). To stop using Coolify Cloud, simply head over to the **Billing** page and cancel your subscription.
5+
<ZoomableImage src="/docs/images/get-started/uninstallation-banner.webp" />
76

8-
The following instructions are for those who are **self-hosting** Coolify and wish to uninstall it from their server.
7+
<br />
98

10-
The uninstallation process involves the following five steps:
9+
If you're using [Coolify Cloud ↗](https://coolify.io/pricing/), you don't need to uninstall Coolify since the Coolify Team manages everything on their servers.
10+
11+
To stop using Coolify Cloud, simply visit the [Billing page ↗](https://app.coolify.io/subscription/) and cancel your subscription.
12+
13+
For those who **self-host** Coolify and wish to remove it from your server, follow the steps below to uninstall it safely:
1114
- [Stop and Remove Containers](#_1-stop-and-remove-containers)
1215
- [Remove Docker Volumes](#_2-remove-docker-volumes)
1316
- [Remove Docker Network](#_3-remove-docker-network)
@@ -20,16 +23,16 @@ Stop all Coolify-related Docker containers and remove them to free up system res
2023

2124
Run the following commands in your terminal:
2225
```sh
23-
sudo docker stop -t 0 coolify coolify-realtime coolify-db coolify-redis coolify-proxy
24-
sudo docker rm coolify coolify-realtime coolify-db coolify-redis coolify-proxy
26+
sudo docker stop -t 0 coolify coolify-realtime coolify-db coolify-redis coolify-proxy
27+
sudo docker rm coolify coolify-realtime coolify-db coolify-redis coolify-proxy
2528
```
2629
The `-t 0` flag ensures that the containers stop immediately without waiting for a timeout.
2730

2831

2932
## 2. Remove Docker Volumes
3033
To remove the persistent data stored in Docker volumes for Coolify, run:
3134
```sh
32-
sudo docker volume rm coolify-db coolify-redis
35+
sudo docker volume rm coolify-db coolify-redis
3336
```
3437
::: danger CAUTION!!
3538
Removing volumes will delete all data stored in them permanently. Ensure you have backups if needed.
@@ -39,9 +42,9 @@ To remove the persistent data stored in Docker volumes for Coolify, run:
3942
## 3. Remove Docker Network
4043
Coolify uses a custom Docker network named coolify. Remove it with the following command:
4144
```sh
42-
sudo docker network rm coolify
45+
sudo docker network rm coolify
4346
```
44-
::: info 📌 Info
47+
::: info Info
4548
If you encounter an error indicating the network is in use, ensure that no containers are using the network before retrying.
4649
:::
4750

@@ -59,21 +62,21 @@ Remove the directory where Coolify stores its data on your server:
5962
## 5. Remove Docker Images
6063
To free up disk space, remove all Docker images used by Coolify by running the following commands:
6164
```sh
62-
sudo docker rmi ghcr.io/coollabsio/coolify:latest
63-
sudo docker rmi ghcr.io/coollabsio/coolify-helper:latest
64-
sudo docker rmi quay.io/soketi/soketi:1.6-16-alpine
65-
sudo docker rmi postgres:15-alpine
66-
sudo docker rmi redis:alpine
65+
sudo docker rmi ghcr.io/coollabsio/coolify:latest
66+
sudo docker rmi ghcr.io/coollabsio/coolify-helper:latest
67+
sudo docker rmi quay.io/soketi/soketi:1.6-16-alpine
68+
sudo docker rmi postgres:15-alpine
69+
sudo docker rmi redis:alpine
6770
```
6871

6972
If you were using the default proxy, also remove its image:
7073
```sh
71-
sudo docker rmi traefik:v3.1
74+
sudo docker rmi traefik:v3.1
7275
```
7376

7477
If you switched to the Caddy proxy, remove its image instead:
7578
```sh
76-
sudo docker rmi lucaslorentz/caddy-docker-proxy:2.8-alpine
79+
sudo docker rmi lucaslorentz/caddy-docker-proxy:2.8-alpine
7780
```
7881

7982
---
11.4 KB
Loading

nginx/redirects.conf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,5 @@ 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; }
9393
location = /upgrade { return 301 /docs/get-started/upgrade; }
94-
location = /downgrade { return 301 /docs/get-started/downgrade; }
94+
location = /downgrade { return 301 /docs/get-started/downgrade; }
95+
location = /uninstallation { return 301 /docs/get-started/uninstallation; }

0 commit comments

Comments
 (0)