From b70f4dec084ad3cab5beb5451b3f7c79daf1a285 Mon Sep 17 00:00:00 2001 From: Tigerblue77 <37409593+tigerblue77@users.noreply.github.com> Date: Sun, 28 Jan 2024 23:07:51 +0000 Subject: [PATCH] Improved and fixed devcontainer.json --- .devcontainer/.devcontainer.json | 12 ------------ .devcontainer/devcontainer.json | 29 +++++++++++++++++++++++++++++ .github/dependabot.yml | 12 ++++++++++++ 3 files changed, 41 insertions(+), 12 deletions(-) delete mode 100644 .devcontainer/.devcontainer.json create mode 100644 .devcontainer/devcontainer.json create mode 100644 .github/dependabot.yml diff --git a/.devcontainer/.devcontainer.json b/.devcontainer/.devcontainer.json deleted file mode 100644 index b2f9770..0000000 --- a/.devcontainer/.devcontainer.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "image": "mcr.microsoft.com/devcontainers/universal:2", - "features": {}, - "customizations": { - "vscode": { - "extensions": [ - "ms-azuretools.vscode-docker", - "mhutchie.git-graph" - ] - } - } -} diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..9348107 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,29 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile +{ + "name": "Existing Dockerfile", + "image": "mcr.microsoft.com/devcontainers/universal", + "customizations": { + "vscode": { + "extensions": [ + "mhutchie.git-graph", + "ms-azuretools.vscode-docker" + ] + } + } + + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + + // Uncomment the next line to run commands after the container is created. + // "postCreateCommand": "cat /etc/os-release", + + // Configure tool-specific properties. + // "customizations": {}, + + // Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "devcontainer" +} diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..f33a02c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for more information: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates +# https://containers.dev/guide/dependabot + +version: 2 +updates: + - package-ecosystem: "devcontainers" + directory: "/" + schedule: + interval: weekly