2024-07-21 04:14:46 +00:00
|
|
|
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
2024-07-22 04:54:33 +00:00
|
|
|
// README at: https://github.com/devcontainers/templates/tree/main/src/java
|
2024-07-21 04:14:46 +00:00
|
|
|
{
|
2024-07-22 04:54:33 +00:00
|
|
|
"name": "Java",
|
|
|
|
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
|
|
|
"image": "mcr.microsoft.com/devcontainers/java:1-11-bullseye",
|
2024-07-21 04:14:46 +00:00
|
|
|
|
2024-07-22 04:54:33 +00:00
|
|
|
"features": {
|
|
|
|
"ghcr.io/devcontainers/features/java:1": {
|
|
|
|
"version": "none",
|
|
|
|
"installMaven": "true",
|
|
|
|
"installGradle": "true"
|
|
|
|
},
|
|
|
|
"ghcr.io/devcontainers/features/powershell:1": {}
|
2024-08-05 18:28:04 +00:00
|
|
|
},
|
|
|
|
"customizations": {
|
|
|
|
"vscode": {
|
|
|
|
"extensions": [
|
|
|
|
"vscjava.vscode-java-pack"
|
|
|
|
]
|
|
|
|
}
|
2024-07-22 04:54:33 +00:00
|
|
|
}
|
2024-07-21 04:14:46 +00:00
|
|
|
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
|
|
// "forwardPorts": [],
|
|
|
|
|
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
2024-07-22 04:54:33 +00:00
|
|
|
// "postCreateCommand": "java -version",
|
2024-07-21 04:14:46 +00:00
|
|
|
|
|
|
|
// Configure tool-specific properties.
|
|
|
|
// "customizations": {},
|
|
|
|
|
|
|
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
|
|
|
// "remoteUser": "root"
|
|
|
|
}
|