Files
java/.devcontainer/devcontainer.json

27 lines
786 B
JSON
Raw Normal View History

2019-04-16 20:03:58 -07:00
{
"name": "Java Sample",
"dockerFile": "Dockerfile",
2019-08-26 14:00:04 -07: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"],
// Use 'settings' to set *default* container specific settings.json values on container create.
// You can edit these settings after create using File > Preferences > Settings > Remote.
"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
},
2019-08-26 14:00:04 -07:00
// Uncomment the next line if you want to publish any ports.
// "appPort": [],
// Uncomment the next line to run commands after the container is created.
// "postCreateCommand": "java -version",
"extensions": [
"vscjava.vscode-java-pack",
"redhat.vscode-xml"
],
2019-04-16 20:03:58 -07:00
}