Files
devcontainers/develop-base/.devcontainer/devcontainer.json

37 lines
1002 B
JSON

{
"build": {
"dockerfile": "./Dockerfile",
"context": ".",
},
"features": {
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/git-lfs:1": {
"version": "latest",
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "latest",
},
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {
"version": "latest",
},
},
"remoteUser": "codespace",
"containerUser": "codespace",
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
"lldb.executable": "/usr/bin/lldb",
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [],
},
},
}