2019-06-24 20:03:06 +02:00
---
# project information
project_name : code-server
project_url : "https://coder.com"
2020-06-13 23:53:35 +02:00
project_logo : "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/code-server-banner.png"
2019-06-24 20:03:06 +02:00
project_blurb : "[{{ project_name|capitalize }}]({{ project_url }}) is VS Code running on a remote server, accessible through the browser.
2021-02-03 15:47:20 +01:00
2019-06-24 20:03:06 +02:00
- Code on your Chromebook, tablet, and laptop with a consistent dev environment.
- If you have a Windows or Mac workstation, more easily develop for Linux.
- Take advantage of large cloud servers to speed up tests, compilations, downloads, and more.
- Preserve battery life when you're on the go.
- All intensive computation runs on your server.
- You're no longer running excess instances of Chrome."
project_lsio_github_repo_url : "https://github.com/linuxserver/docker-{{ project_name }}"
# supported architectures
available_architectures :
- { arch : "{{ arch_x86_64 }}" , tag : "amd64-latest" }
2020-05-18 02:40:11 +02:00
- { arch : "{{ arch_arm64 }}" , tag : "arm64v8-latest" }
- { arch : "{{ arch_armhf }}" , tag : "arm32v7-latest" }
2019-06-24 20:03:06 +02:00
# development version
2019-09-21 07:23:10 +02:00
development_versions : true
2019-06-24 20:03:06 +02:00
development_versions_items :
- { tag : "latest" , desc : "Stable releases" }
2020-11-18 15:31:21 +01:00
- { tag : "development" , desc : "DEPRECATED (no longer updated) - Prereleases from their GitHub" }
2019-06-24 20:03:06 +02:00
# container parameters
common_param_env_vars_enabled : true
param_container_name : "{{ project_name }}"
param_usage_include_vols : true
param_volumes :
- { vol_path : "/config" , vol_host_path : "/path/to/appdata/config" , desc : "Contains all relevant configuration files." }
param_usage_include_ports : true
param_ports :
- { external_port : "8443" , internal_port : "8443" , port_desc : "web gui" }
param_usage_include_env : true
param_env_vars :
2020-12-24 02:03:43 +01:00
- { env_var : "TZ" , env_value : "Europe/London" , desc : "Specify a timezone to use EG Europe/London" }
2019-06-24 20:03:06 +02:00
# optional container parameters
2019-06-24 21:27:16 +02:00
opt_param_usage_include_env : true
2019-06-24 20:03:06 +02:00
opt_param_env_vars :
2021-02-04 15:27:39 +01:00
- { env_var : "PASSWORD" , env_value : "password" , desc : "Optional web gui password, if `PASSWORD` or `HASHED_PASSWORD` is not provided, there will be no auth." }
- { env_var : "HASHED_PASSWORD" , env_value : "" , desc : "Optional web gui password, overrides `PASSWORD`, instructions on how to create it is below." }
2020-12-24 02:03:43 +01:00
- { 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." }
- { 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`." }
2020-05-29 17:38:41 +02:00
- { 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/doc/FAQ.md#sub-domains)" }
2019-06-24 20:03:06 +02:00
optional_block_1 : false
optional_block_1_items : ""
# application setup block
app_setup_block_enabled : true
app_setup_block : |
2021-02-03 15:47:20 +01:00
Access the webui at `http://<your-ip>:8443`.
For github integration, drop your ssh key in to `/config/.ssh`.
Then open a terminal from the top menu and set your github username and email via the following commands
2021-02-04 15:27:39 +01:00
```bash
2019-06-25 18:40:04 +02:00
git config --global user.name "username"
git config --global user.email "email address"
```
2021-02-03 15:47:20 +01:00
### Hashed code-server password
2021-02-04 15:27:39 +01:00
To create the [hashed password](https://github.com/cdr/code-server/blob/master/doc/FAQ.md#can-i-store-my-password-hashed), use printf instead of echo as echo introduces newlines in the hash.
2021-02-03 15:47:20 +01:00
2019-06-24 20:03:06 +02:00
# changelog
changelogs :
2021-02-04 15:27:39 +01:00
- { date : "04.02.20:" , desc : "Allow setting gui password via hash using env var `HASHED_PASSWORD`." }
2020-12-24 02:03:43 +01:00
- { date : "23.12.20:" , desc : "Allow setting sudo password via hash using env var `SUDO_PASSWORD_HASH`." }
- { date : "29.05.20:" , desc : "Add --domain-proxy support." }
2020-05-21 21:30:45 +02:00
- { date : "21.05.20:" , desc : "Shrink images, install via yarn, fix arm32v7 build." }
2020-05-18 02:40:11 +02:00
- { date : "18.05.20:" , desc : "Switch to multi-arch images, install via npm." }
2020-04-30 00:45:31 +02:00
- { date : "29.04.20:" , desc : "Update start arguments." }
2020-04-02 03:49:46 +02:00
- { date : "01.04.20:" , desc : "Structural changes required for v3." }
2020-01-18 04:38:58 +01:00
- { date : "17.01.20:" , desc : "Fix artifact url retrieval from github." }
2019-10-24 21:51:46 +02:00
- { date : "24.10.19:" , desc : "Upgrade to v2 builds." }
2019-09-28 20:57:30 +02:00
- { date : "28.09.19:" , desc : "Update project logo." }
2019-09-21 07:23:10 +02:00
- { date : "21.09.19:" , desc : "Add development builds/tag." }
2019-07-09 23:29:50 +02:00
- { date : "09.07.19:" , desc : "Add optional sudo access." }
2019-07-01 21:48:53 +02:00
- { date : "01.07.19:" , desc : "Add nano." }
2019-06-24 20:03:06 +02:00
- { date : "24.06.19:" , desc : "Initial Release." }