Skip to content

Commit 2ca22c3

Browse files
committed
docs(install): update to v3.9.0
1 parent 0f17ceb commit 2ca22c3

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

docs/install.md

+20-19
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@
22
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
33
# Install
44

5-
- [Upgrading](#upgrading)
6-
- [install.sh](#installsh)
7-
- [Flags](#flags)
8-
- [Detection Reference](#detection-reference)
9-
- [Debian, Ubuntu](#debian-ubuntu)
10-
- [Fedora, CentOS, RHEL, SUSE](#fedora-centos-rhel-suse)
11-
- [Arch Linux](#arch-linux)
12-
- [yarn, npm](#yarn-npm)
13-
- [macOS](#macos)
14-
- [Standalone Releases](#standalone-releases)
15-
- [Docker](#docker)
16-
- [helm](#helm)
5+
- [Install](#install)
6+
- [Upgrading](#upgrading)
7+
- [install.sh](#installsh)
8+
- [Flags](#flags)
9+
- [Detection Reference](#detection-reference)
10+
- [Debian, Ubuntu](#debian-ubuntu)
11+
- [Fedora, CentOS, RHEL, SUSE](#fedora-centos-rhel-suse)
12+
- [Arch Linux](#arch-linux)
13+
- [yarn, npm](#yarn-npm)
14+
- [macOS](#macos)
15+
- [Standalone Releases](#standalone-releases)
16+
- [Docker](#docker)
17+
- [helm](#helm)
1718

1819
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
1920

@@ -87,17 +88,17 @@ commands presented in the rest of this document.
8788
## Debian, Ubuntu
8889

8990
```bash
90-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.8.1/code-server_3.8.1_amd64.deb
91-
sudo dpkg -i code-server_3.8.1_amd64.deb
91+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.0/code-server_3.9.0_amd64.deb
92+
sudo dpkg -i code-server_3.9.0_amd64.deb
9293
sudo systemctl enable --now code-server@$USER
9394
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
9495
```
9596

9697
## Fedora, CentOS, RHEL, SUSE
9798

9899
```bash
99-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.8.1/code-server-3.8.1-amd64.rpm
100-
sudo rpm -i code-server-3.8.1-amd64.rpm
100+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.0/code-server-3.9.0-amd64.rpm
101+
sudo rpm -i code-server-3.9.0-amd64.rpm
101102
sudo systemctl enable --now code-server@$USER
102103
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
103104
```
@@ -167,10 +168,10 @@ Here is an example script for installing and using a standalone `code-server` re
167168

168169
```bash
169170
mkdir -p ~/.local/lib ~/.local/bin
170-
curl -fL https://github.com/cdr/code-server/releases/download/v3.8.1/code-server-3.8.1-linux-amd64.tar.gz \
171+
curl -fL https://github.com/cdr/code-server/releases/download/v3.9.0/code-server-3.9.0-linux-amd64.tar.gz \
171172
| tar -C ~/.local/lib -xz
172-
mv ~/.local/lib/code-server-3.8.1-linux-amd64 ~/.local/lib/code-server-3.8.1
173-
ln -s ~/.local/lib/code-server-3.8.1/bin/code-server ~/.local/bin/code-server
173+
mv ~/.local/lib/code-server-3.9.0-linux-amd64 ~/.local/lib/code-server-3.9.0
174+
ln -s ~/.local/lib/code-server-3.9.0/bin/code-server ~/.local/bin/code-server
174175
PATH="~/.local/bin:$PATH"
175176
code-server
176177
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml

0 commit comments

Comments
 (0)