Created
February 20, 2025 05:29
-
-
Save CodeMan99/61e6a7f328897396fde434913c767321 to your computer and use it in GitHub Desktop.
Kotlin using VS Code via a Devcontainer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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