@@ -6,11 +6,15 @@ This article walks you through how to upgrade your Coder server.
6
6
> Prior to upgrading a production Coder deployment, take a database snapshot since
7
7
> Coder does not support rollbacks.
8
8
9
+ ##Reinstall Coder to upgrade
10
+
11
+ <div class =" tabs " >
12
+
9
13
To upgrade your Coder server, simply reinstall Coder using your original method
10
14
of[ install] ( ../install ) . If you are using the Official Coder AMI on AWS, use the
11
15
first option to upgrade.
12
16
13
- ##Via install.sh
17
+ ### install.sh
14
18
15
19
If you installed Coder using the` install.sh ` script, re-run the below command
16
20
on the host:
@@ -28,7 +32,7 @@ systemctl daemon-reload
28
32
systemctl restart coder
29
33
```
30
34
31
- ##Via docker-compose
35
+ ### docker-compose
32
36
33
37
If you installed using` docker-compose ` , run the below command to upgrade the
34
38
Coder container:
@@ -37,12 +41,12 @@ Coder container:
37
41
docker-compose pull coder&& docker-compose up -d coder
38
42
```
39
43
40
- ##Via Kubernetes
44
+ ### Kubernetes
41
45
42
46
See
43
47
[ Upgrading Coder via Helm] ( ../install/kubernetes.md#upgrading-coder-via-helm ) .
44
48
45
- ##Via Windows
49
+ ### Windows
46
50
47
51
Download the latest Windows installer or binary from
48
52
[ GitHub releases] ( https://github.com/coder/coder/releases/latest ) , or upgrade
@@ -51,3 +55,5 @@ from Winget.
51
55
``` pwsh
52
56
winget install Coder.Coder
53
57
```
58
+
59
+ </div >