dotfiles/.devcontainer/devcontainer.json

56 lines
1.8 KiB
JSON

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.208.0/containers/ubuntu
{
"name": "ajhalili2006's setup",
"build": {
"dockerfile": "Dockerfile",
// Update 'VARIANT' to pick an Ubuntu version: hirsute, focal, bionic
// Use hirsute or bionic on local arm64/Apple Silicon.
"args": { "VARIANT": "focal" }
},
// Set *default* container specific settings.json values on container create.
"settings": {
"workbench.iconTheme": "material-icon-theme",
"workbench.productIconTheme": "material-product-icons",
"workbench.colorTheme": "GitHub Dark Default",
"git.alwaysSignOff": true
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"GitHub.github-vscode-theme",
"ms-azuretools.vscode-docker",
"formulahendry.docker-explorer",
"donjayamanne.githistory",
"cschleiden.vscode-github-actions",
"me-dutour-mathieu.vscode-github-actions",
"michelemelluso.gitignore",
"timonwong.shellcheck",
"WakaTime.vscode-wakatime",
"PKief.material-icon-theme",
"PKief.material-product-icons"
],
// 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",
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode",
"features": {
"docker-in-docker": "latest",
"kubectl-helm-minikube": "latest",
"terraform": "latest",
"git": "latest",
"git-lfs": "latest",
"github-cli": "latest",
"sshd": "latest",
"homebrew": "latest",
"node": "lts",
"python": "latest"
}
}