mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
26 lines
590 B
JSON
26 lines
590 B
JSON
{
|
|
"hostRequirements": {
|
|
"cpus": 4,
|
|
"memory": "8gb",
|
|
"storage": "32gb"
|
|
},
|
|
"name": "Renovate",
|
|
"dockerFile": "Dockerfile",
|
|
"settings": {
|
|
"terminal.integrated.profiles.linux": { "bash": { "path": "/bin/bash" } },
|
|
"terminal.integrated.defaultProfile.linux": "bash"
|
|
},
|
|
"extensions": [
|
|
"dbaeumer.vscode-eslint",
|
|
"esbenp.prettier-vscode",
|
|
"orta.vscode-jest",
|
|
"EditorConfig.editorconfig"
|
|
],
|
|
"runArgs": [
|
|
"--cap-add=SYS_PTRACE",
|
|
"--security-opt",
|
|
"seccomp=unconfined",
|
|
"--privileged"
|
|
],
|
|
"postCreateCommand": "yarn install"
|
|
}
|