Skip to content

Instantly share code, notes, and snippets.

@CodeMan99
Created February 20, 2025 05:29
Show Gist options
  • Save CodeMan99/61e6a7f328897396fde434913c767321 to your computer and use it in GitHub Desktop.
Save CodeMan99/61e6a7f328897396fde434913c767321 to your computer and use it in GitHub Desktop.
Kotlin using VS Code via a Devcontainer
{
"name": "Debian",
"image": "mcr.microsoft.com/devcontainers/base:bookworm",
"customizations": {
"vscode": {
"extensions": [
"fwcd.kotlin",
"vscjava.vscode-java-pack"
]
}
},
"mounts": [
{
"type": "bind",
"source": "${localEnv:HOME}/.config/exercism",
"target": "/home/vscode/.config/exercism"
}
],
"features": {
"ghcr.io/devcontainers/features/java:1": {
"jdkDistro": "oracle",
"version": "21",
"installGradle": true
},
"ghcr.io/mikaello/devcontainer-features/kotlinc:1": {},
"ghcr.io/codeman99/features/exercism-cli:1": {}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment