mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 18:31:02 +01:00
42 lines
774 B
JSON
42 lines
774 B
JSON
{
|
|
"name": "VS code",
|
|
"version": "v3.8.0-ls67",
|
|
"slug": "code-server",
|
|
"description": "Code-server is VS Code running on a remote server, accessible through the browser.",
|
|
"url": "https://hub.docker.com/r/linuxserver/code-server",
|
|
"startup": "services",
|
|
"arch": [
|
|
"aarch64",
|
|
"amd64",
|
|
"armv7",
|
|
"armhf"
|
|
],
|
|
"ports": {
|
|
"8443/tcp": 8443
|
|
},
|
|
"map": [
|
|
"backup:rw",
|
|
"config:rw",
|
|
"share:rw",
|
|
"media:rw",
|
|
"ssl"
|
|
],
|
|
"privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
|
|
"full_access": true,
|
|
"webui": "http://[HOST]:[PORT:8443]",
|
|
"boot": "auto",
|
|
"environment": {
|
|
"PUID": 0,
|
|
"PGID": 0
|
|
},
|
|
"options": {
|
|
"PUID": 0,
|
|
"PGID": 0
|
|
},
|
|
"schema": {
|
|
"PUID": "int",
|
|
"PGID": "int",
|
|
"TZ": "str?"
|
|
}
|
|
}
|