You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/azure-vm/README.md
+36Lines changed: 36 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,45 @@ To complete this guide, you need:
7
7
8
8
## Setup
9
9
10
+
### Create a VM
11
+
12
+
1. Navigate to https://portal.azure.com/#create/Microsoft.VirtualMachine-ARM
13
+
1. Launch a Ubuntu 20.04 instance with the default settings
14
+
***Caution**: Please follow security best practices when setting up your VM
15
+
16
+
### Download & extract OpenVSCode Server
17
+
18
+
**Caution**: Make sure you successfully connected to the VM before you execute the following commands.
19
+
20
+
First, let's define the release version we want to download. You can find the latest version on the [Releases](https://github.com/gitpod-io/openvscode-server/releases) page.
21
+
22
+
```bash
23
+
export SERVER_VERSION=1.60.0 # Replace with the latest version
24
+
```
25
+
26
+
With that in place, let's download & extract OpenVSCode server:
0 commit comments