Skip to content

Commit

Permalink
Create devcontainer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-thompson-day8 authored Mar 27, 2024
1 parent a423879 commit 98fd27e
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "re-com Development",
"build": {
"dockerfile": "Dockerfile",
"args": {
// Options
"CLOJURE_VERSION": "1.10.3"
}
},

// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
},

// Add the IDs of extensions you want to be installed when the container is created.
"extensions": [
"vscjava.vscode-java-pack",
"borkdude.clj-kondo",
"betterthantomorrow.calva"
]
}
},

// 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": "java -version",

// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode"
}

0 comments on commit 98fd27e

Please sign in to comment.