Files
java/.devcontainer/devcontainer.json
2019-08-06 01:08:09 +00:00

16 lines
390 B
JSON

{
"name": "Java Sample",
"dockerFile": "Dockerfile",
"extensions": [
"vscjava.vscode-java-pack",
"redhat.vscode-xml"
],
"settings":{
"java.home": "/docker-java-home",
"terminal.integrated.shell.linux": "/bin/bash"
},
// Comment out the next line to run as root instead. Linux users,
// update Dockerfile with your user's UID/GID if not 1000.
"runArgs": ["-u", "vscode"]
}