Skip to content

Commit bba69cd

Browse files
Bot Updating Templated Files
1 parent c34d4ea commit bba69cd

File tree

3 files changed

+23
-31
lines changed

3 files changed

+23
-31
lines changed

.github/ISSUE_TEMPLATE/issue.bug.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ body:
5353
options:
5454
- x86-64
5555
- arm64
56-
- armhf
5756
validations:
5857
required: true
5958
- type: textarea

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The architectures supported by this image are:
5656
| :----: | :----: | ---- |
5757
| x86-64 || amd64-\<version tag\> |
5858
| arm64 || arm64v8-\<version tag\> |
59-
| armhf | | arm32v7-\<version tag\> |
59+
| armhf | | |
6060

6161
## Version Tags
6262

@@ -252,6 +252,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
252252

253253
## Versions
254254

255+
* **01.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
255256
* **29.09.22:** - Rebase to jammy, switch to s6v3. Fix chown logic to skip `/config/workspace` contents.
256257
* **12.02.22:** - Update `install-extension` helper to compensate for upstream changes.
257258
* **04.02.22:** - Update binary for 1.64.0+. Allow for no token set when both toekn env vars are unset. Add libsecret for keytar.

readme-vars.yml

Lines changed: 21 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -6,43 +6,36 @@ project_url: "https://github.com/gitpod-io/openvscode-server"
66
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/openvscode-server-logo.png"
77
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) provides a version of VS Code that runs a server on a remote machine and allows access through a modern web browser."
88
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
9-
109
# supported architectures
1110
available_architectures:
12-
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
13-
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
14-
- { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
15-
11+
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
12+
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
1613
# development version
1714
development_versions: true
1815
development_versions_items:
19-
- { tag: "latest", desc: "Stable releases" }
20-
- { tag: "insiders", desc: "Insiders releases" }
21-
16+
- {tag: "latest", desc: "Stable releases"}
17+
- {tag: "insiders", desc: "Insiders releases"}
2218
# container parameters
2319
common_param_env_vars_enabled: true
2420
param_container_name: "{{ project_name }}"
2521
param_usage_include_vols: true
2622
param_volumes:
27-
- { vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Contains all relevant configuration files." }
23+
- {vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Contains all relevant configuration files."}
2824
param_usage_include_ports: true
2925
param_ports:
30-
- { external_port: "3000", internal_port: "3000", port_desc: "Web UI port." }
26+
- {external_port: "3000", internal_port: "3000", port_desc: "Web UI port."}
3127
param_usage_include_env: true
3228
param_env_vars:
33-
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use." }
34-
29+
- {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use."}
3530
# optional container parameters
3631
opt_param_usage_include_env: true
3732
opt_param_env_vars:
38-
- { env_var: "CONNECTION_TOKEN", env_value: "", desc: "Optional security token for accessing the Web UI (ie. `supersecrettoken`)." }
39-
- { env_var: "CONNECTION_SECRET", env_value: "", desc: "Optional path to a file inside the container that contains the security token for accessing the Web UI (ie. `/path/to/file`). Overrides `CONNECTION_TOKEN`." }
40-
- { env_var: "SUDO_PASSWORD", env_value: "password", desc: "If this optional variable is set, user will have sudo access in the openvscode-server terminal with the specified password." }
41-
- { env_var: "SUDO_PASSWORD_HASH", env_value: "", desc: "Optionally set sudo password via hash (takes priority over `SUDO_PASSWORD` var). Format is `$type$salt$hashed`." }
42-
33+
- {env_var: "CONNECTION_TOKEN", env_value: "", desc: "Optional security token for accessing the Web UI (ie. `supersecrettoken`)."}
34+
- {env_var: "CONNECTION_SECRET", env_value: "", desc: "Optional path to a file inside the container that contains the security token for accessing the Web UI (ie. `/path/to/file`). Overrides `CONNECTION_TOKEN`."}
35+
- {env_var: "SUDO_PASSWORD", env_value: "password", desc: "If this optional variable is set, user will have sudo access in the openvscode-server terminal with the specified password."}
36+
- {env_var: "SUDO_PASSWORD_HASH", env_value: "", desc: "Optionally set sudo password via hash (takes priority over `SUDO_PASSWORD` var). Format is `$type$salt$hashed`."}
4337
optional_block_1: false
4438
optional_block_1_items: ""
45-
4639
# application setup block
4740
app_setup_block_enabled: true
4841
app_setup_block: |
@@ -57,16 +50,15 @@ app_setup_block: |
5750
```
5851
5952
When reverse proxied through SWAG, custom services running on specific ports inside openvscode-server can be accessed at `https://PORT.openvscode-server.domain.com` very much like how code-server's port proxy function is handled. For that, a wildcard CNAME `*.openvscode-server.domain.com` needs to be created and the SWAG cert needs to cover those subdomains.
60-
61-
6253
# changelog
6354
changelogs:
64-
- { date: "29.09.22:", desc: "Rebase to jammy, switch to s6v3. Fix chown logic to skip `/config/workspace` contents." }
65-
- { date: "12.02.22:", desc: "Update `install-extension` helper to compensate for upstream changes." }
66-
- { date: "04.02.22:", desc: "Update binary for 1.64.0+. Allow for no token set when both toekn env vars are unset. Add libsecret for keytar." }
67-
- { date: "29.12.21:", desc: "Add `install-extension` as a helper for mods to install extensions." }
68-
- { date: "10.12.21:", desc: "Update deprecated connectionToken arg." }
69-
- { date: "30.11.21:", desc: "Fix app folder permissions, add the optional sudo password vars." }
70-
- { date: "29.11.21:", desc: "Create `.profile` and `.bashrc` for the user." }
71-
- { date: "29.11.21:", desc: "Release `insiders` tag." }
72-
- { date: "28.11.21:", desc: "Initial Release." }
55+
- {date: "01.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
56+
- {date: "29.09.22:", desc: "Rebase to jammy, switch to s6v3. Fix chown logic to skip `/config/workspace` contents."}
57+
- {date: "12.02.22:", desc: "Update `install-extension` helper to compensate for upstream changes."}
58+
- {date: "04.02.22:", desc: "Update binary for 1.64.0+. Allow for no token set when both toekn env vars are unset. Add libsecret for keytar."}
59+
- {date: "29.12.21:", desc: "Add `install-extension` as a helper for mods to install extensions."}
60+
- {date: "10.12.21:", desc: "Update deprecated connectionToken arg."}
61+
- {date: "30.11.21:", desc: "Fix app folder permissions, add the optional sudo password vars."}
62+
- {date: "29.11.21:", desc: "Create `.profile` and `.bashrc` for the user."}
63+
- {date: "29.11.21:", desc: "Release `insiders` tag."}
64+
- {date: "28.11.21:", desc: "Initial Release."}

0 commit comments

Comments
 (0)