31 lines
976 B
JSON
31 lines
976 B
JSON
|
{
|
||
|
"name": "Java & Mariadb",
|
||
|
"dockerComposeFile": "docker-compose.yml",
|
||
|
"service": "app",
|
||
|
"workspaceFolder": "/workspace",
|
||
|
|
||
|
// Set *default* container specific settings.json values on container create.
|
||
|
"settings": {
|
||
|
"java.jdt.ls.java.home": "/docker-java-home"
|
||
|
},
|
||
|
|
||
|
// Add the IDs of extensions you want installed when the container is created.
|
||
|
"extensions": [
|
||
|
"vscjava.vscode-java-pack",
|
||
|
"pivotal.vscode-boot-dev-pack",
|
||
|
"richardwillis.vscode-gradle-extension-pack",
|
||
|
"eamodio.gitlens",
|
||
|
"donjayamanne.githistory"
|
||
|
],
|
||
|
|
||
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||
|
// This can be used to network with other containers or with the host.
|
||
|
// "forwardPorts": [5432],
|
||
|
|
||
|
// Use 'postCreateCommand' to run commands after the container is created.
|
||
|
// "postCreateCommand": "java -version",
|
||
|
|
||
|
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
||
|
"remoteUser": "vscode"
|
||
|
}
|