Skip to content

Commit 28082a9

Browse files
committed
Merge branch 'main' into iron-bank
2 parents a131dcf + aa53b86 commit 28082a9

File tree

5 files changed

+58
-0
lines changed

5 files changed

+58
-0
lines changed

docs/admin/upgrade.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,18 @@ Coder container:
3939
docker-compose pull coder && docker-compose up coder -d
4040
```
4141

42+
## Via Kubernetes
43+
44+
See [Upgrading Coder via Helm](../install/kubernetes.md#upgrading-coder-via-helm).
45+
46+
## Via Windows
47+
48+
Download the latest Windows installer or binary from [GitHub releases](https://github.com/coder/coder/releases), or upgrade from Winget.
49+
50+
```sh
51+
winget install Coder.Coder
52+
```
53+
4254
## Up Next
4355

4456
- [Learn how to enable Enterprise features](../enterprise.md).
881 KB
Loading

docs/install/windows.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Windows
2+
3+
Use the Windows installer to download the CLI and add Coder to `PATH`. Alternatively, you can install Coder on Windows via a [standalone binary](./binary.md).
4+
5+
1. Download the Windows installer from [GitHub releases](https://github.com/coder/coder/releases) or from `winget`
6+
7+
```powershell
8+
winget install Coder.Coder
9+
```
10+
11+
2. Run the application
12+
13+
![Windows installer](../images/install/windows-installer.png)
14+
15+
3. Start a Coder server
16+
17+
```console
18+
# Automatically sets up an external access URL on *.try.coder.app
19+
coder server
20+
21+
# Requires a PostgreSQL instance (version 13 or higher) and external access URL
22+
coder server --postgres-url <url> --access-url <url>
23+
```
24+
25+
> Set `CODER_ACCESS_URL` to the external URL that users and workspaces will use to
26+
> connect to Coder. This is not required if you are using the tunnel. Learn more
27+
> about Coder's [configuration options](../admin/configure.md).
28+
29+
4. Visit the Coder URL in the logs to set up your first account, or use the CLI.
30+
31+
## Next steps
32+
33+
- [Quickstart](../quickstart.md)
34+
- [Configuring Coder](../admin/configure.md)
35+
- [Templates](../templates.md)

docs/manifest.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@
4141
"description": "Install Coder with Docker / docker-compose",
4242
"path": "./install/docker.md"
4343
},
44+
{
45+
"title": "Windows",
46+
"description": "Install Coder on Windows",
47+
"path": "./install/windows.md"
48+
},
4449
{
4550
"title": "Standalone binaries",
4651
"description": "Download binaries for macOS, Windows, and Linux",

scripts/release/generate_release_notes.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,4 +148,10 @@ Compare: [\`$old_version...$new_version\`](https://github.com/coder/coder/compar
148148
## Container image
149149
150150
- \`docker pull $image_tag\`
151+
152+
## Install/upgrade
153+
154+
Refer to our docs to [install](https://coder.com/docs/v2/latest/install)
155+
or [upgrade](https://coder.com/docs/v2/latest/admin/upgrade) Coder, or use
156+
a release asset below.
151157
"

0 commit comments

Comments
 (0)