mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-12-27 10:57:28 +00:00
27 lines
661 B
JSON
27 lines
661 B
JSON
{
|
|
"name": "Petclinic",
|
|
"dockerFile": "Dockerfile",
|
|
"runArgs": [
|
|
"--cap-add=SYS_PTRACE",
|
|
"--security-opt",
|
|
"seccomp=unconfined",
|
|
"--mount",
|
|
"type=bind,source=${env:HOME}/.m2,target=/home/vscode/.m2",
|
|
"--mount",
|
|
"type=bind,source=${env:HOME}/.gradle,target=/home/vscode/.gradle"
|
|
],
|
|
"initializeCommand": "mkdir -p ${env:HOME}/.m2 ${env:HOME}/.gradle",
|
|
"onCreateCommand": "sudo chown vscode:vscode /home/vscode/.m2 /home/vscode/.gradle",
|
|
"remoteUser": "vscode",
|
|
"features": {
|
|
"docker-in-docker": "latest",
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"vscjava.vscode-java-pack",
|
|
"redhat.vscode-xml"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|