Skip to content

Commit 0ae77a3

Browse files
Bot Updating Templated Files
1 parent b47e341 commit 0ae77a3

File tree

3 files changed

+39
-59
lines changed

3 files changed

+39
-59
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
@@ -62,7 +62,7 @@ The architectures supported by this image are:
6262
| :----: | :----: | ---- |
6363
| x86-64 || amd64-\<version tag\> |
6464
| arm64 || arm64v8-\<version tag\> |
65-
| armhf | | arm32v7-\<version tag\> |
65+
| armhf | | |
6666

6767
## Application Setup
6868

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

258258
## Versions
259259

260+
* **01.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
260261
* **05.10.22:** - Install recommended deps to maintain parity with the older images.
261262
* **29.09.22:** - Rebase to jammy, switch to s6v3. Fix chown logic to skip `/config/workspace` contents.
262263
* **20.02.22:** - Install using the official tarballs.

readme-vars.yml

Lines changed: 37 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -4,58 +4,39 @@
44
project_name: code-server
55
project_url: "https://coder.com"
66
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/code-server-banner.png"
7-
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is VS Code running on a remote server, accessible through the browser.
8-
9-
- Code on your Chromebook, tablet, and laptop with a consistent dev environment.
10-
11-
- If you have a Windows or Mac workstation, more easily develop for Linux.
12-
13-
- Take advantage of large cloud servers to speed up tests, compilations, downloads, and more.
14-
15-
- Preserve battery life when you're on the go.
16-
17-
- All intensive computation runs on your server.
18-
19-
- You're no longer running excess instances of Chrome."
7+
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is VS Code running on a remote server, accessible through the browser.\n- Code on your Chromebook, tablet, and laptop with a consistent dev environment.\n- If you have a Windows or Mac workstation, more easily develop for Linux.\n- Take advantage of large cloud servers to speed up tests, compilations, downloads, and more.\n- Preserve battery life when you're on the go.\n- All intensive computation runs on your server.\n- You're no longer running excess instances of Chrome."
208
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
21-
229
# supported architectures
2310
available_architectures:
24-
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
25-
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
26-
- { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
27-
11+
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
12+
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
2813
# development version
2914
development_versions: false
3015
development_versions_items:
31-
- { tag: "latest", desc: "Stable releases" }
32-
16+
- {tag: "latest", desc: "Stable releases"}
3317
# container parameters
3418
common_param_env_vars_enabled: true
3519
param_container_name: "{{ project_name }}"
3620
param_usage_include_vols: true
3721
param_volumes:
38-
- { vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Contains all relevant configuration files." }
22+
- {vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Contains all relevant configuration files."}
3923
param_usage_include_ports: true
4024
param_ports:
41-
- { external_port: "8443", internal_port: "8443", port_desc: "web gui" }
25+
- {external_port: "8443", internal_port: "8443", port_desc: "web gui"}
4226
param_usage_include_env: true
4327
param_env_vars:
44-
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London" }
45-
28+
- {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"}
4629
# optional container parameters
4730
opt_param_usage_include_env: true
4831
opt_param_env_vars:
49-
- { env_var: "PASSWORD", env_value: "password", desc: "Optional web gui password, if `PASSWORD` or `HASHED_PASSWORD` is not provided, there will be no auth." }
50-
- { env_var: "HASHED_PASSWORD", env_value: "", desc: "Optional web gui password, overrides `PASSWORD`, instructions on how to create it is below." }
51-
- { env_var: "SUDO_PASSWORD", env_value: "password", desc: "If this optional variable is set, user will have sudo access in the code-server terminal with the specified password." }
52-
- { 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`." }
53-
- { env_var: "PROXY_DOMAIN", env_value: "code-server.my.domain", desc: "If this optional variable is set, this domain will be proxied for subdomain proxying. See [Documentation](https://github.com/cdr/code-server/blob/master/docs/FAQ.md#sub-domains)" }
54-
- { env_var: "DEFAULT_WORKSPACE", env_value: "/config/workspace", desc: "If this optional variable is set, code-server will open this directory by default" }
55-
32+
- {env_var: "PASSWORD", env_value: "password", desc: "Optional web gui password, if `PASSWORD` or `HASHED_PASSWORD` is not provided, there will be no auth."}
33+
- {env_var: "HASHED_PASSWORD", env_value: "", desc: "Optional web gui password, overrides `PASSWORD`, instructions on how to create it is below."}
34+
- {env_var: "SUDO_PASSWORD", env_value: "password", desc: "If this optional variable is set, user will have sudo access in the code-server terminal with the specified password."}
35+
- {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`."}
36+
- {env_var: "PROXY_DOMAIN", env_value: "code-server.my.domain", desc: "If this optional variable is set, this domain will be proxied for subdomain proxying. See [Documentation](https://github.com/cdr/code-server/blob/master/docs/FAQ.md#sub-domains)"}
37+
- {env_var: "DEFAULT_WORKSPACE", env_value: "/config/workspace", desc: "If this optional variable is set, code-server will open this directory by default"}
5638
optional_block_1: false
5739
optional_block_1_items: ""
58-
5940
# application setup block
6041
app_setup_block_enabled: true
6142
app_setup_block: |
@@ -71,30 +52,29 @@ app_setup_block: |
7152
### Hashed code-server password
7253
7354
How to create the [hashed password](https://github.com/cdr/code-server/blob/master/docs/FAQ.md#can-i-store-my-password-hashed).
74-
75-
7655
# changelog
7756
changelogs:
78-
- { date: "05.10.22:", desc: "Install recommended deps to maintain parity with the older images." }
79-
- { date: "29.09.22:", desc: "Rebase to jammy, switch to s6v3. Fix chown logic to skip `/config/workspace` contents." }
80-
- { date: "20.02.22:", desc: "Install using the official tarballs." }
81-
- { date: "29.12.21:", desc: "Add `install-extension` as a helper for mods to install extensions." }
82-
- { date: "06.12.21:", desc: "Add `DEFAULT_WORKSPACE` env var." }
83-
- { date: "29.11.21:", desc: "Rebase to Ubuntu focal." }
84-
- { date: "16.09.21:", desc: "Fix slow `chown` on large workspace (contents of workspace folder no longer chowned)." }
85-
- { date: "11.07.21:", desc: "Bump node to 14 to fix builds" }
86-
- { date: "08.05.21:", desc: "Fix doc link" }
87-
- { date: "04.02.20:", desc: "Allow setting gui password via hash using env var `HASHED_PASSWORD`." }
88-
- { date: "23.12.20:", desc: "Allow setting sudo password via hash using env var `SUDO_PASSWORD_HASH`." }
89-
- { date: "29.05.20:", desc: "Add --domain-proxy support." }
90-
- { date: "21.05.20:", desc: "Shrink images, install via yarn, fix arm32v7 build." }
91-
- { date: "18.05.20:", desc: "Switch to multi-arch images, install via npm." }
92-
- { date: "29.04.20:", desc: "Update start arguments." }
93-
- { date: "01.04.20:", desc: "Structural changes required for v3." }
94-
- { date: "17.01.20:", desc: "Fix artifact url retrieval from github." }
95-
- { date: "24.10.19:", desc: "Upgrade to v2 builds." }
96-
- { date: "28.09.19:", desc: "Update project logo." }
97-
- { date: "21.09.19:", desc: "Add development builds/tag." }
98-
- { date: "09.07.19:", desc: "Add optional sudo access." }
99-
- { date: "01.07.19:", desc: "Add nano." }
100-
- { date: "24.06.19:", desc: "Initial Release." }
57+
- {date: "01.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
58+
- {date: "05.10.22:", desc: "Install recommended deps to maintain parity with the older images."}
59+
- {date: "29.09.22:", desc: "Rebase to jammy, switch to s6v3. Fix chown logic to skip `/config/workspace` contents."}
60+
- {date: "20.02.22:", desc: "Install using the official tarballs."}
61+
- {date: "29.12.21:", desc: "Add `install-extension` as a helper for mods to install extensions."}
62+
- {date: "06.12.21:", desc: "Add `DEFAULT_WORKSPACE` env var."}
63+
- {date: "29.11.21:", desc: "Rebase to Ubuntu focal."}
64+
- {date: "16.09.21:", desc: "Fix slow `chown` on large workspace (contents of workspace folder no longer chowned)."}
65+
- {date: "11.07.21:", desc: "Bump node to 14 to fix builds"}
66+
- {date: "08.05.21:", desc: "Fix doc link"}
67+
- {date: "04.02.20:", desc: "Allow setting gui password via hash using env var `HASHED_PASSWORD`."}
68+
- {date: "23.12.20:", desc: "Allow setting sudo password via hash using env var `SUDO_PASSWORD_HASH`."}
69+
- {date: "29.05.20:", desc: "Add --domain-proxy support."}
70+
- {date: "21.05.20:", desc: "Shrink images, install via yarn, fix arm32v7 build."}
71+
- {date: "18.05.20:", desc: "Switch to multi-arch images, install via npm."}
72+
- {date: "29.04.20:", desc: "Update start arguments."}
73+
- {date: "01.04.20:", desc: "Structural changes required for v3."}
74+
- {date: "17.01.20:", desc: "Fix artifact url retrieval from github."}
75+
- {date: "24.10.19:", desc: "Upgrade to v2 builds."}
76+
- {date: "28.09.19:", desc: "Update project logo."}
77+
- {date: "21.09.19:", desc: "Add development builds/tag."}
78+
- {date: "09.07.19:", desc: "Add optional sudo access."}
79+
- {date: "01.07.19:", desc: "Add nano."}
80+
- {date: "24.06.19:", desc: "Initial Release."}

0 commit comments

Comments
 (0)