Skip to content

chore: add uninstall steps to remove a Coder OSS deployment from docs #3742

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Sep 9, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add package uninstall instructions
  • Loading branch information
bpmct committed Aug 29, 2022
commit bb8f5b0bce758995a78fecc0ae65699cb202a339
24 changes: 22 additions & 2 deletions docs/install/uninstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,26 @@ rm -rf ~/.cache/coder

## The Coder server binary and CLI

Debian, Ubuntu:

```sh
sudo apt remove coder
```

Fedora, CentOS, RHEL, SUSE:

```sh
sudo yum remove coder
```

Alpine:

```sh
sudo apk del coder
```

If you installed Coder manually or used the install script on an unsupported operating system, you can remove the binary directly:

```console
sudo rm /usr/local/bin/coder
```
Expand All @@ -33,7 +53,7 @@ sudo rm /etc/coder.d/coder.env
> There is a `postgres` directory within the `coderv2` directory that has the
> database engine and database. If you want to reuse the database, consider
> not performing the following step or copying the directory to another
> location
> location.

### macOS

Expand All @@ -50,7 +70,7 @@ rm -rf ~/.config/coderv2
### Windows

```console
C:\Users\USER\AppData\coderv2
C:\Users\USER\AppData\Roaming\coderv2
```

## Up Next
Expand Down