Compare commits

...

7 Commits

Author SHA1 Message Date
573fd4f80b update description 2024-05-14 23:09:40 +02:00
4bfc38e2dc 5.0.21 2019-11-05 15:50:15 +01:00
56fea33e32 fix(core): update to v2 of code-server 2019-11-05 15:50:15 +01:00
7e4b4e22a9 5.0.20 2019-11-05 15:48:26 +01:00
dd2c874bbf fix(core): update 2019-11-05 15:48:25 +01:00
073a29988f 5.0.19 2019-11-05 15:33:37 +01:00
f499f2a068 fix(core): update 2019-11-05 15:33:36 +01:00
7 changed files with 27 additions and 7 deletions

View File

@ -1,4 +1,4 @@
FROM codercom/code-server
FROM codercom/code-server:v2
LABEL author="Lossless GmbH <hello@lossless.com>"
USER root

View File

@ -1,7 +1,7 @@
{
"gitzone": {
"module": {
"githost": "gitlab.com",
"githost": "code.foss.global",
"gitscope": "hosttoday",
"gitrepo": "ht-docker-vscode",
"shortDescription": "a vscode image with everything installed needed to run a vscode instance",
@ -9,5 +9,8 @@
"license": "MIT"
}
},
"npmci": {}
"npmci": {},
"tsdoc": {
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
}
}

2
package-lock.json generated
View File

@ -1,5 +1,5 @@
{
"name": "ht-docker-vscode",
"version": "5.0.18",
"version": "5.0.21",
"lockfileVersion": 1
}

View File

@ -1,10 +1,10 @@
{
"name": "ht-docker-vscode",
"version": "5.0.18",
"version": "5.0.21",
"description": "a vscode image with everything installed needed to run a vscode instance",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test": "echo \"Error: no test specified\"",
"build": "echo \"Not needed for now\""
},
"repository": {

1
readme.hints.md Normal file
View File

@ -0,0 +1 @@

View File

@ -18,8 +18,10 @@ a vscode image with everything installed needed to run a vscode instance
## Usage
This image uses codercom/code-server:v2 as base. As a result you can use it largely like the base image.
```
docker run -it -p 127.0.0.1:8080:8080 -v "${HOME}/.local/share/code-server:/home/coder/.local/share/code-server" -v "$PWD:/home/coder/project" hosttoday/ht-docker-vscode
docker run -it -p 127.0.0.1:8080:8080 -v "${HOME}/.local/share/code-server:/home/coder/.local/share/code-server" -v "$PWD:/home/coder/project" registry.gitlab.com/hosttoday/ht-docker-vscode
```
## Contribution

14
tsconfig.json Normal file
View File

@ -0,0 +1,14 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"verbatimModuleSyntax": true
},
"exclude": [
"dist_*/**/*.d.ts"
]
}