[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
This commit is contained in:
parent
5b2a136747
commit
1b5b2e8c8a
|
@ -5,7 +5,7 @@
|
|||
"exposable": true,
|
||||
"port": 8138,
|
||||
"id": "code-server",
|
||||
"tipi_version": 25,
|
||||
"tipi_version": 26,
|
||||
"version": "4.22.1",
|
||||
"categories": [
|
||||
"development"
|
||||
|
@ -22,6 +22,14 @@
|
|||
"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": [
|
||||
|
|
|
@ -8,6 +8,7 @@ services:
|
|||
- PGID=1000
|
||||
- TZ=${TZ}
|
||||
- PASSWORD=${CODESERVER_PASSWORD}
|
||||
- SUDO_PASSWORD=${CODESERVER_SUDO_PASSWORD}
|
||||
- DEFAULT_WORKSPACE=/config/workspace #optional
|
||||
volumes:
|
||||
- ${APP_DATA_DIR}/data/config:/config #config dir
|
||||
|
|
|
@ -4,4 +4,5 @@
|
|||
- Use cloud servers to speed up tests, compilations, downloads, and more
|
||||
- Preserve battery life when you're on the go; all intensive tasks run on your server
|
||||
|
||||
![screenshot](https://raw.githubusercontent.com/coder/code-server/main/docs/assets/screenshot.png)
|
||||
![Screenshot](https://raw.githubusercontent.com/coder/code-server/main/docs/assets/screenshot-1.png)
|
||||
![Screenshot](https://raw.githubusercontent.com/coder/code-server/main/docs/assets/screenshot-2.png)
|
||||
|
|
Loading…
Reference in New Issue
Block a user