Skip to content

Commit

Permalink
Merge pull request #130 from theohbrothers/enhancement/add-code-serve…
Browse files Browse the repository at this point in the history
…r-4.20.0-variants

Enhancement: Add code-server 4.20.0 variants
  • Loading branch information
theohbrothersbot authored Dec 22, 2023
2 parents aaf0c5d + 6a28142 commit d0f7a50
Show file tree
Hide file tree
Showing 18 changed files with 2,143 additions and 9 deletions.
392 changes: 391 additions & 1 deletion .github/workflows/ci-master-pr.yml

Large diffs are not rendered by default.

21 changes: 13 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ Dockerized [`code-server`](https://github.com/coder/code-server).

| Tag | Dockerfile Build Context |
|:-------:|:---------:|
| `:4.19.1`, `:latest` | [View](variants/4.19.1) |
| `:4.20.0`, `:latest` | [View](variants/4.20.0) |
| `:4.20.0-docker` | [View](variants/4.20.0-docker) |
| `:4.20.0-docker-go-1.20.12` | [View](variants/4.20.0-docker-go-1.20.12) |
| `:4.20.0-docker-rootless` | [View](variants/4.20.0-docker-rootless) |
| `:4.20.0-docker-rootless-go-1.20.12` | [View](variants/4.20.0-docker-rootless-go-1.20.12) |
| `:4.19.1` | [View](variants/4.19.1) |
| `:4.19.1-docker` | [View](variants/4.19.1-docker) |
| `:4.19.1-docker-go-1.20.12` | [View](variants/4.19.1-docker-go-1.20.12) |
| `:4.19.1-docker-rootless` | [View](variants/4.19.1-docker-rootless) |
Expand Down Expand Up @@ -56,7 +61,7 @@ Dockerized [`code-server`](https://github.com/coder/code-server).
| `:4.11.0-docker-rootless` | [View](variants/4.11.0-docker-rootless) |
| `:4.11.0-docker-rootless-go-1.20.12` | [View](variants/4.11.0-docker-rootless-go-1.20.12) |

Base variants are based on `alpine`, and include `npm 8` and `nodejs 16` (to run `code-server`), `pwsh`, and basic tools. E.g. `4.19.1`
Base variants are based on `alpine`, and include `npm 8` and `nodejs 16` (to run `code-server`), `pwsh`, and basic tools. E.g. `4.20.0`

Incremental variants include additional tools and their `code` extensions:

Expand All @@ -69,29 +74,29 @@ Incremental variants include additional tools and their `code` extensions:
### Base variant(s)

```sh
docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:4.19.1
docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:4.20.0
# code-server is now available at http://127.0.0.1:8080. To login, use the password in the config file:
docker exec code-server sh -c 'cat ~/.config/code-server/config.yaml'
```

To disable password authentication, use `--auth=none`:

```sh
docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:4.19.1 --bind-addr=0.0.0.0:8080 --auth=none --disable-telemetry --disable-update-check
docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:4.20.0 --bind-addr=0.0.0.0:8080 --auth=none --disable-telemetry --disable-update-check
```

### `docker` variant(s)

```sh
docker run --name code-server --rm -it --privileged -v docker:/var/lib/docker -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:4.19.1-docker
docker run --name code-server --rm -it --privileged -v docker:/var/lib/docker -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:4.20.0-docker
# code-server is now available at http://127.0.0.1:8080. To login, use the password in the config file:
docker exec code-server sh -c 'cat ~/.config/code-server/config.yaml'
```

To disable password authentication, use `--auth=none`:

```sh
docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:4.19.1-docker --bind-addr=0.0.0.0:8080 --auth=none --disable-telemetry --disable-update-check
docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:4.20.0-docker --bind-addr=0.0.0.0:8080 --auth=none --disable-telemetry --disable-update-check
```

#### docker buildx
Expand Down Expand Up @@ -119,15 +124,15 @@ docker buildx build ...
### `docker-rootless` variant(s)

```sh
docker run --name code-server --rm -it --privileged -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:4.19.1-docker-rootless
docker run --name code-server --rm -it --privileged -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:4.20.0-docker-rootless
# code-server is now available at http://127.0.0.1:8080. To login, use the password in the config file:
docker exec code-server sh -c 'cat ~/.config/code-server/config.yaml'
```

To start code-server without password authentication, use `--auth=none`:

```sh
docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:4.19.1-docker-rootless --bind-addr=0.0.0.0:8080 --auth=none --disable-telemetry --disable-update-check
docker run --name code-server --rm -it -p 127.0.0.1:8080:8080 theohbrothers/docker-code-server:4.20.0-docker-rootless --bind-addr=0.0.0.0:8080 --auth=none --disable-telemetry --disable-update-check
```

To build multi-arch images using `docker buildx`, see [here](#docker-buildx).
Expand Down
1 change: 1 addition & 0 deletions generate/definitions/versions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"code-server": {
"versions": [
"4.20.0",
"4.19.1",
"4.18.0",
"4.17.1",
Expand Down
Loading

0 comments on commit d0f7a50

Please sign in to comment.