From a895301c7d19728128597373b60f00422776d2c0 Mon Sep 17 00:00:00 2001 From: Damien Abos Date: Sat, 9 Dec 2023 16:18:19 +0000 Subject: [PATCH] feat: add devcontainer configuration --- .devcontainer/devcontainer.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..b0bb8b31 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,31 @@ +{ + "$schema": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.schema.json", + "name": "litestream", + "image": "mcr.microsoft.com/devcontainers/base:bullseye", + "features": { + "ghcr.io/devcontainers/features/common-utils": { + "installZsh": true, + "installOhMyZsh": true, + "configureZshAsDefaultShell": true, + "upgradePackages": true, + "nonFreePackages": true + }, + "ghcr.io/devcontainers/features/docker-in-docker": { + "installDockerBuildx": true, + "moby": true, + "version": "latest" + }, + "ghcr.io/devcontainers/features/go": { + "version": "1.21" + } + }, + "customizations": { + "vscode": { + "extensions": [ + "azuretools.vscode-docker", + "golang.go", + "ms-vscode.makefile-tools" + ] + } + } +} \ No newline at end of file