2019-06-24 20:03:06 +02:00
---
# project information
project_name : code-server
project_url : "https://coder.com"
2019-09-28 20:57:30 +02:00
project_logo : "https://github.com/cdr/code-server/raw/master/doc/assets/ide.gif"
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.
- 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" }
# 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" }
2019-09-21 07:23:10 +02:00
- { tag : "development" , desc : "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 :
- { env_var : "TZ" , env_value : "Europe/London" , desc : "Specify a timezone to use EG Europe/London" }
# 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 :
2019-07-09 23:29:50 +02:00
- { env_var : "PASSWORD" , env_value : "password" , desc : "Optional web gui password, if not provided, there will be no auth." }
- { 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." }
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 : |
2019-06-25 18:40:04 +02: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
```
git config --global user.name "username"
git config --global user.email "email address"
```
2019-06-24 20:03:06 +02:00
# changelog
changelogs :
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." }