From dd77446f8e2ac0135322e53376c06cb6564073c5 Mon Sep 17 00:00:00 2001 From: Christian Huth Date: Mon, 16 Dec 2024 19:21:34 +0100 Subject: [PATCH] first draft of devcontainer --- .devcontainer/devcontainer.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..24294dd0 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,25 @@ +// For format details, see https://aka.ms/devcontainer.json +{ + "name": "helm-charts", + + // Features to add to the dev container. More info: https://containers.dev/features. + "features": { + "ghcr.io/devcontainers-contrib/features/pre-commit:2": {}, + "ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {}, + "ghcr.io/mpriscella/features/helm-chart-testing:1": {} + }, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + + // Configure tool-specific properties. + // "customizations": {}, + + "remoteUser": "vscode", + "runArgs": [ + "--userns=keep-id" + ], + "containerEnv": { + "HOME": "/home/vscode" + } +} \ No newline at end of file