Files
java/.devcontainer/devcontainer.json

16 lines
390 B
JSON
Raw Normal View History

2019-04-16 20:03:58 -07:00
{
"name": "Java Sample",
"dockerFile": "Dockerfile",
"extensions": [
2019-04-18 21:16:10 -07:00
"vscjava.vscode-java-pack",
"redhat.vscode-xml"
],
"settings":{
2019-06-20 23:23:55 +00:00
"java.home": "/docker-java-home",
"terminal.integrated.shell.linux": "/bin/bash"
2019-08-06 01:08:09 +00:00
},
// 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"]
2019-04-16 20:03:58 -07:00
}