diff --git a/templates/base/.devcontainer.json b/templates/base/.devcontainer.json index bb4f4e6..2e1bfeb 100644 --- a/templates/base/.devcontainer.json +++ b/templates/base/.devcontainer.json @@ -14,7 +14,7 @@ "version": "${localEnv:NODE_VERSION}" }, "ghcr.io/guiyomh/features/vim:0": {}, - "ghcr.io/situdevelopment/devcontainer-features/automation:1.0.0": {} + "ghcr.io/situdevelopment/devcontainer-features/automation:1": {} }, "customizations": { @@ -33,7 +33,10 @@ } }, - "postCreateCommand": "npm install", + "postCreateCommand": { + "npm-deps": "npm install", + "git-completion": "echo 'source /usr/share/bash-completion/completions/git' >> /etc/bash.bashrc" + }, // required for Dev Containers which use Docker Compose: https://github.com/microsoft/vscode-remote-release/issues/7923 "postStartCommand": "git config --global --add safe.directory ${containerWorkspaceFolder}" diff --git a/templates/base/devcontainer-template.json b/templates/base/devcontainer-template.json index 6232857..21ffad7 100644 --- a/templates/base/devcontainer-template.json +++ b/templates/base/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "base", - "version": "1.2.0", + "version": "1.3.0", "name": "Base Dev Container", "description": "Base Dev Container template" }