app-store/apps/code-server/config.json
Tim Krampitz 1b5b2e8c8a
[APP] Code-server: Add sudo-password (#2936)
* Added optional sudo password for code-server

* Fixed description.md with current screenshots

* Added SUDO_PASSWORD to docker-compose

* Fixed form_field type

* Fixed image links

* Bumped tipi version to 26
2024-04-05 14:15:44 +03:00

40 lines
897 B
JSON

{
"$schema": "../schema.json",
"name": "Code-Server - Web VS Code",
"available": true,
"exposable": true,
"port": 8138,
"id": "code-server",
"tipi_version": 26,
"version": "4.22.1",
"categories": [
"development"
],
"description": "",
"short_desc": "Code-server is VS Code running on a remote server, accessible through the browser.",
"author": "https://github.com/coder",
"source": "https://github.com/linuxserver/docker-code-server",
"form_fields": [
{
"type": "password",
"label": "Password",
"max": 50,
"min": 3,
"required": true,
"env_variable": "CODESERVER_PASSWORD"
},
{
"type": "password",
"label": "Sudo Password",
"max": 50,
"min": 3,
"required": false,
"env_variable": "CODESERVER_SUDO_PASSWORD"
}
],
"supported_architectures": [
"arm64",
"amd64"
]
}