Skip to content

Commit

Permalink
πŸ‘¨β€πŸ’» Adds devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
brucificus committed Dec 14, 2023
1 parent 65142f3 commit 1b257a7
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
{
"name": "Ubuntu",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/base:jammy",

// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {},
"ghcr.io/devcontainers/features/java:1": {
"version": "latest",
"jdkDistro": "ms",
"installMaven": true,
"mavenVersion": "latest"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "20"
}
},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a",

// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"vscjava.vscode-java-pack",
"mike-lischke.vscode-antlr4",
"EditorConfig.EditorConfig",
"Orta.vscode-jest",
"kavod-io.vscode-jest-test-adapter",
"ms-vscode.test-adapter-converter",
"connorshea.vscode-test-explorer-status-bar",
"hbenl.vscode-test-explorer",
"christian-kohler.npm-intellisense",
"VisualStudioExptTeam.vscodeintellicode",
"esbenp.prettier-vscode",
"swellaby.node-pack"
]
}
}

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}

0 comments on commit 1b257a7

Please sign in to comment.