基础版本

This commit is contained in:
2026-02-14 14:29:48 +08:00
parent d73b4795c1
commit bc28e1ce42
14 changed files with 543 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
{
"build": {
"dockerfile": "./Dockerfile",
"context": ".",
},
"features": {
"ghcr.io/devcontainers/features/git:1": {
"version": "latest",
"ppa": "false",
},
"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": [],
},
},
}