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/install.md
+5-13
Original file line number
Diff line number
Diff line change
@@ -1,29 +1,21 @@
1
1
# Install
2
2
3
-
This article walks you through the various ways of installing and deploying Coder.
4
-
5
3
## install.sh
6
4
7
-
The easiest way to install Coder is to use our [install script](https://github.com/coder/coder/blob/main/install.sh) for Linux and macOS. The install script
8
-
attempts to use the system package manager detection-reference if possible.
5
+
The easiest way to install Coder is to use our [install script](https://github.com/coder/coder/blob/main/install.sh) for Linux and macOS.
9
6
10
-
You can preview what occurs during the install process:
7
+
To install, run:
11
8
12
9
```bash
13
-
curl -L https://coder.com/install.sh | sh -s -- --dry-run
10
+
curl -L https://coder.com/install.sh | sh
14
11
```
15
12
16
-
To install, run:
13
+
You can preview what occurs during the install process:
17
14
18
15
```bash
19
-
curl -L https://coder.com/install.sh | sh
16
+
curl -L https://coder.com/install.sh | sh -s -- --dry-run
20
17
```
21
18
22
-
> If you're concerned about the install script's use of `curl | sh` and the
0 commit comments