From 76f27f4c170929d983f6993059a91c9226095bc7 Mon Sep 17 00:00:00 2001 From: Paul Yu Date: Fri, 16 Sep 2022 14:27:43 -0700 Subject: [PATCH 1/4] Add new option for azure-cli extensions --- src/azure-cli/devcontainer-feature.json | 17 +++++++++++------ src/azure-cli/install.sh | 12 ++++++++++++ 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/src/azure-cli/devcontainer-feature.json b/src/azure-cli/devcontainer-feature.json index 12a40921f..430cfe4f1 100644 --- a/src/azure-cli/devcontainer-feature.json +++ b/src/azure-cli/devcontainer-feature.json @@ -12,16 +12,21 @@ ], "default": "latest", "description": "Select or enter an Azure CLI version. (Available versions may vary by Linux distribution.)" + }, + "extensions": { + "type": "array", + "default": [], + "description": "Enter Azure CLI extension names you wish to include." } }, "customizations": { - "vscode": { - "extensions": [ - "ms-vscode.azurecli" - ] - } + "vscode": { + "extensions": [ + "ms-vscode.azurecli" + ] + } }, "installsAfter": [ "ghcr.io/devcontainers/features/common-utils" ] -} +} \ No newline at end of file diff --git a/src/azure-cli/install.sh b/src/azure-cli/install.sh index de5d65dfa..9d532ea3f 100755 --- a/src/azure-cli/install.sh +++ b/src/azure-cli/install.sh @@ -13,6 +13,7 @@ set -e rm -rf /var/lib/apt/lists/* AZ_VERSION=${VERSION:-"latest"} +AZ_EXTENSIONS=${EXTENSIONS} MICROSOFT_GPG_KEYS_URI="https://packages.microsoft.com/keys/microsoft.asc" AZCLI_ARCHIVE_ARCHITECTURES="amd64" @@ -185,6 +186,17 @@ if [ "${use_pip}" = "true" ]; then fi fi +# If Azure CLI extensions are requested, loop through and install +if [ ${#AZ_EXTENSIONS[@]} -gt 0 ]; then + echo "Installing Azure CLI extensions: ${AZ_EXTENSIONS}" + extensions=(`echo ${AZ_EXTENSIONS} | tr ',' ' '`) + for i in "${extensions[@]}" + do + echo "Installing ${i}" + su $(getent passwd "1000" | cut -d: -f1) -c "az extension add --name ${i} -y" + done +fi + # Clean up rm -rf /var/lib/apt/lists/* From c55014469a0d8052099c0ffb56916ae0873619b1 Mon Sep 17 00:00:00 2001 From: Paul Yu Date: Thu, 27 Oct 2022 18:01:17 -0700 Subject: [PATCH 2/4] Update to install az extensions as $_REMOTE_USER --- src/azure-cli/devcontainer-feature.json | 2 +- src/azure-cli/install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/devcontainer-feature.json b/src/azure-cli/devcontainer-feature.json index 430cfe4f1..49b223170 100644 --- a/src/azure-cli/devcontainer-feature.json +++ b/src/azure-cli/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "azure-cli", - "version": "1.0.5", + "version": "1.0.6", "name": "Azure CLI", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/azure-cli", "description": "Installs the Azure CLI along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.", diff --git a/src/azure-cli/install.sh b/src/azure-cli/install.sh index 9d532ea3f..7c681b287 100755 --- a/src/azure-cli/install.sh +++ b/src/azure-cli/install.sh @@ -193,7 +193,7 @@ if [ ${#AZ_EXTENSIONS[@]} -gt 0 ]; then for i in "${extensions[@]}" do echo "Installing ${i}" - su $(getent passwd "1000" | cut -d: -f1) -c "az extension add --name ${i} -y" + su ${_REMOTE_USER} -c "az extension add --name ${i} -y" done fi From f1f3800eaf0e13309609f96c996b898aa7eb7621 Mon Sep 17 00:00:00 2001 From: Paul Yu Date: Thu, 27 Oct 2022 18:14:55 -0700 Subject: [PATCH 3/4] Skip unknown extensions --- src/azure-cli/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/install.sh b/src/azure-cli/install.sh index 7c681b287..429ad7235 100755 --- a/src/azure-cli/install.sh +++ b/src/azure-cli/install.sh @@ -193,7 +193,7 @@ if [ ${#AZ_EXTENSIONS[@]} -gt 0 ]; then for i in "${extensions[@]}" do echo "Installing ${i}" - su ${_REMOTE_USER} -c "az extension add --name ${i} -y" + su ${_REMOTE_USER} -c "az extension add --name ${i} -y" || echo "No extension found with name ${i}" done fi From a1027b7f281707618d8364e87748c62d5dee3ec0 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 28 Oct 2022 01:15:35 +0000 Subject: [PATCH 4/4] Automated documentation update [skip ci] --- src/anaconda/README.md | 4 ++-- src/aws-cli/README.md | 4 ++-- src/azure-cli/README.md | 5 +++-- src/common-utils/README.md | 4 ++-- src/conda/README.md | 4 ++-- src/desktop-lite/README.md | 4 ++-- src/docker-from-docker/README.md | 4 ++-- src/docker-in-docker/README.md | 4 ++-- src/dotnet/README.md | 4 ++-- src/git-lfs/README.md | 4 ++-- src/git/README.md | 4 ++-- src/github-cli/README.md | 4 ++-- src/go/README.md | 4 ++-- src/hugo/README.md | 4 ++-- src/java/README.md | 4 ++-- src/kubectl-helm-minikube/README.md | 4 ++-- src/node/README.md | 4 ++-- src/nvidia-cuda/README.md | 4 ++-- src/oryx/README.md | 4 ++-- src/php/README.md | 4 ++-- src/powershell/README.md | 4 ++-- src/python/README.md | 4 ++-- src/ruby/README.md | 4 ++-- src/rust/README.md | 4 ++-- src/sshd/README.md | 4 ++-- src/terraform/README.md | 4 ++-- 26 files changed, 53 insertions(+), 52 deletions(-) diff --git a/src/anaconda/README.md b/src/anaconda/README.md index 8f1130279..2b4a8ebad 100644 --- a/src/anaconda/README.md +++ b/src/anaconda/README.md @@ -7,7 +7,7 @@ ```json "features": { - "ghcr.io/devcontainers/features/anaconda:1": { + "ghcr.io/pauldotyu/features/anaconda:1": { "version": "latest" } } @@ -36,4 +36,4 @@ conda install python=3.7 --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/anaconda/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/anaconda/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/aws-cli/README.md b/src/aws-cli/README.md index 3fb4688f8..3fcbc0de7 100644 --- a/src/aws-cli/README.md +++ b/src/aws-cli/README.md @@ -7,7 +7,7 @@ Installs the AWS CLI along with needed dependencies. Useful for base Dockerfiles ```json "features": { - "ghcr.io/devcontainers/features/aws-cli:1": { + "ghcr.io/pauldotyu/features/aws-cli:1": { "version": "latest" } } @@ -23,4 +23,4 @@ Available versions of the AWS CLI can be found here: https://github.com/aws/aws- --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/aws-cli/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/aws-cli/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/azure-cli/README.md b/src/azure-cli/README.md index 8b6193ea7..9ea16ffce 100644 --- a/src/azure-cli/README.md +++ b/src/azure-cli/README.md @@ -7,7 +7,7 @@ Installs the Azure CLI along with needed dependencies. Useful for base Dockerfil ```json "features": { - "ghcr.io/devcontainers/features/azure-cli:1": { + "ghcr.io/pauldotyu/features/azure-cli:1": { "version": "latest" } } @@ -18,9 +18,10 @@ Installs the Azure CLI along with needed dependencies. Useful for base Dockerfil | Options Id | Description | Type | Default Value | |-----|-----|-----|-----| | version | Select or enter an Azure CLI version. (Available versions may vary by Linux distribution.) | string | latest | +| extensions | Enter Azure CLI extension names you wish to include. | array | | --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/azure-cli/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/azure-cli/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/common-utils/README.md b/src/common-utils/README.md index 1b1342c64..387ab7102 100644 --- a/src/common-utils/README.md +++ b/src/common-utils/README.md @@ -7,7 +7,7 @@ Installs a set of common command line utilities, Oh My Zsh!, and sets up a non-r ```json "features": { - "ghcr.io/devcontainers/features/common-utils:1": { + "ghcr.io/pauldotyu/features/common-utils:1": { "version": "latest" } } @@ -41,4 +41,4 @@ This setting will survive a rebuild since it is applied to the repository rather --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/common-utils/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/common-utils/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/conda/README.md b/src/conda/README.md index b4c949cee..8e6c5ab0e 100644 --- a/src/conda/README.md +++ b/src/conda/README.md @@ -7,7 +7,7 @@ A cross-platform, language-agnostic binary package manager ```json "features": { - "ghcr.io/devcontainers/features/conda:1": { + "ghcr.io/pauldotyu/features/conda:1": { "version": "latest" } } @@ -37,4 +37,4 @@ conda install python=3.7 --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/conda/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/conda/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/desktop-lite/README.md b/src/desktop-lite/README.md index 36d8693a1..647f18e0b 100644 --- a/src/desktop-lite/README.md +++ b/src/desktop-lite/README.md @@ -7,7 +7,7 @@ Adds a lightweight Fluxbox based desktop to the container that can be accessed u ```json "features": { - "ghcr.io/devcontainers/features/desktop-lite:1": { + "ghcr.io/pauldotyu/features/desktop-lite:1": { "version": "latest" } } @@ -91,4 +91,4 @@ That's it! --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/desktop-lite/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/desktop-lite/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/docker-from-docker/README.md b/src/docker-from-docker/README.md index 18b2f7fd5..329bbbb69 100644 --- a/src/docker-from-docker/README.md +++ b/src/docker-from-docker/README.md @@ -7,7 +7,7 @@ ```json "features": { - "ghcr.io/devcontainers/features/docker-from-docker:1": { + "ghcr.io/pauldotyu/features/docker-from-docker:1": { "version": "latest" } } @@ -51,4 +51,4 @@ docker run -it --rm -v ${LOCAL_WORKSPACE_FOLDER}:/workspace debian bash --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/docker-from-docker/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/docker-from-docker/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/docker-in-docker/README.md b/src/docker-in-docker/README.md index 83a0bb972..e5c6601df 100644 --- a/src/docker-in-docker/README.md +++ b/src/docker-in-docker/README.md @@ -7,7 +7,7 @@ Create child containers *inside* a container, independent from the host's docker ```json "features": { - "ghcr.io/devcontainers/features/docker-in-docker:1": { + "ghcr.io/pauldotyu/features/docker-in-docker:1": { "version": "latest" } } @@ -27,4 +27,4 @@ Create child containers *inside* a container, independent from the host's docker --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/docker-in-docker/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/docker-in-docker/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/dotnet/README.md b/src/dotnet/README.md index c74e6790c..d9a5be8e7 100644 --- a/src/dotnet/README.md +++ b/src/dotnet/README.md @@ -7,7 +7,7 @@ Installs the .NET CLI. Provides option of installing sdk or runtime, and option ```json "features": { - "ghcr.io/devcontainers/features/dotnet:1": { + "ghcr.io/pauldotyu/features/dotnet:1": { "version": "latest" } } @@ -25,4 +25,4 @@ Installs the .NET CLI. Provides option of installing sdk or runtime, and option --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/dotnet/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/dotnet/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/git-lfs/README.md b/src/git-lfs/README.md index 1f7e6c3a2..87d791831 100644 --- a/src/git-lfs/README.md +++ b/src/git-lfs/README.md @@ -7,7 +7,7 @@ Installs Git Large File Support (Git LFS) along with needed dependencies. Useful ```json "features": { - "ghcr.io/devcontainers/features/git-lfs:1": { + "ghcr.io/pauldotyu/features/git-lfs:1": { "version": "latest" } } @@ -23,4 +23,4 @@ Installs Git Large File Support (Git LFS) along with needed dependencies. Useful --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/git-lfs/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/git-lfs/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/git/README.md b/src/git/README.md index 54e1fa608..9d68afbe2 100644 --- a/src/git/README.md +++ b/src/git/README.md @@ -7,7 +7,7 @@ Install an up-to-date version of Git, built from source as needed. Useful for wh ```json "features": { - "ghcr.io/devcontainers/features/git:1": { + "ghcr.io/pauldotyu/features/git:1": { "version": "latest" } } @@ -24,4 +24,4 @@ Install an up-to-date version of Git, built from source as needed. Useful for wh --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/git/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/git/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/github-cli/README.md b/src/github-cli/README.md index 5e95dec13..738bc791a 100644 --- a/src/github-cli/README.md +++ b/src/github-cli/README.md @@ -7,7 +7,7 @@ Installs the GitHub CLI. Auto-detects latest version and installs needed depende ```json "features": { - "ghcr.io/devcontainers/features/github-cli:1": { + "ghcr.io/pauldotyu/features/github-cli:1": { "version": "latest" } } @@ -24,4 +24,4 @@ Installs the GitHub CLI. Auto-detects latest version and installs needed depende --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/github-cli/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/github-cli/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/go/README.md b/src/go/README.md index 644c7617e..af16f6f32 100644 --- a/src/go/README.md +++ b/src/go/README.md @@ -7,7 +7,7 @@ Installs Go and common Go utilities. Auto-detects latest version and installs ne ```json "features": { - "ghcr.io/devcontainers/features/go:1": { + "ghcr.io/pauldotyu/features/go:1": { "version": "latest" } } @@ -23,4 +23,4 @@ Installs Go and common Go utilities. Auto-detects latest version and installs ne --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/go/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/go/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/hugo/README.md b/src/hugo/README.md index afd7aee86..ced2c83f0 100644 --- a/src/hugo/README.md +++ b/src/hugo/README.md @@ -7,7 +7,7 @@ ```json "features": { - "ghcr.io/devcontainers/features/hugo:1": { + "ghcr.io/pauldotyu/features/hugo:1": { "version": "latest" } } @@ -23,4 +23,4 @@ --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/hugo/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/hugo/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/java/README.md b/src/java/README.md index 388aa07c8..50d40dbd1 100644 --- a/src/java/README.md +++ b/src/java/README.md @@ -7,7 +7,7 @@ Installs Java, SDKMAN! (if not installed), and needed dependencies. ```json "features": { - "ghcr.io/devcontainers/features/java:1": { + "ghcr.io/pauldotyu/features/java:1": { "version": "latest" } } @@ -29,4 +29,4 @@ For the Java Feature from this repository, see [NOTICE.txt](https://github.com/d --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/java/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/java/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/kubectl-helm-minikube/README.md b/src/kubectl-helm-minikube/README.md index 11a139de2..417056736 100644 --- a/src/kubectl-helm-minikube/README.md +++ b/src/kubectl-helm-minikube/README.md @@ -7,7 +7,7 @@ Installs latest version of kubectl, Helm, and optionally minikube. Auto-detects ```json "features": { - "ghcr.io/devcontainers/features/kubectl-helm-minikube:1": { + "ghcr.io/pauldotyu/features/kubectl-helm-minikube:1": { "version": "latest" } } @@ -37,4 +37,4 @@ nohup kubectl port-forward --pod-running-timeout=24h -n ingress-nginx service/in --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/kubectl-helm-minikube/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/kubectl-helm-minikube/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/node/README.md b/src/node/README.md index 0624042da..619710e2f 100644 --- a/src/node/README.md +++ b/src/node/README.md @@ -7,7 +7,7 @@ Installs Node.js, nvm, yarn, and needed dependencies. ```json "features": { - "ghcr.io/devcontainers/features/node:1": { + "ghcr.io/pauldotyu/features/node:1": { "version": "latest" } } @@ -25,4 +25,4 @@ Installs Node.js, nvm, yarn, and needed dependencies. --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/node/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/node/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/nvidia-cuda/README.md b/src/nvidia-cuda/README.md index 710bcf5b5..6e943c4a7 100644 --- a/src/nvidia-cuda/README.md +++ b/src/nvidia-cuda/README.md @@ -7,7 +7,7 @@ Installs shared libraries for NVIDIA CUDA. ```json "features": { - "ghcr.io/devcontainers/features/nvidia-cuda:1": { + "ghcr.io/pauldotyu/features/nvidia-cuda:1": { "version": "latest" } } @@ -45,4 +45,4 @@ Enable GPU passthrough to your devcontainer by adding `["--gpus", "all"]` to you --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/nvidia-cuda/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/nvidia-cuda/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/oryx/README.md b/src/oryx/README.md index 67fd70a88..4def64fc9 100644 --- a/src/oryx/README.md +++ b/src/oryx/README.md @@ -7,7 +7,7 @@ Installs the oryx CLI ```json "features": { - "ghcr.io/devcontainers/features/oryx:1": { + "ghcr.io/pauldotyu/features/oryx:1": { "version": "latest" } } @@ -19,4 +19,4 @@ Installs the oryx CLI --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/oryx/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/oryx/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/php/README.md b/src/php/README.md index f0c605cce..daf20899c 100644 --- a/src/php/README.md +++ b/src/php/README.md @@ -7,7 +7,7 @@ ```json "features": { - "ghcr.io/devcontainers/features/php:1": { + "ghcr.io/pauldotyu/features/php:1": { "version": "latest" } } @@ -24,4 +24,4 @@ --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/php/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/php/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/powershell/README.md b/src/powershell/README.md index 24bdb0cb3..11c4485d1 100644 --- a/src/powershell/README.md +++ b/src/powershell/README.md @@ -7,7 +7,7 @@ Installs PowerShell along with needed dependencies. Useful for base Dockerfiles ```json "features": { - "ghcr.io/devcontainers/features/powershell:1": { + "ghcr.io/pauldotyu/features/powershell:1": { "version": "latest" } } @@ -23,4 +23,4 @@ Installs PowerShell along with needed dependencies. Useful for base Dockerfiles --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/powershell/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/powershell/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/python/README.md b/src/python/README.md index 2f1434dad..97c868bf9 100644 --- a/src/python/README.md +++ b/src/python/README.md @@ -7,7 +7,7 @@ Installs the provided version of Python, as well as PIPX, and other common Pytho ```json "features": { - "ghcr.io/devcontainers/features/python:1": { + "ghcr.io/pauldotyu/features/python:1": { "version": "latest" } } @@ -28,4 +28,4 @@ Installs the provided version of Python, as well as PIPX, and other common Pytho --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/python/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/python/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/ruby/README.md b/src/ruby/README.md index d8ca8555f..94202b65d 100644 --- a/src/ruby/README.md +++ b/src/ruby/README.md @@ -7,7 +7,7 @@ Installs Ruby, rvm, rbenv, common Ruby utilities, and needed dependencies. ```json "features": { - "ghcr.io/devcontainers/features/ruby:1": { + "ghcr.io/pauldotyu/features/ruby:1": { "version": "latest" } } @@ -23,4 +23,4 @@ Installs Ruby, rvm, rbenv, common Ruby utilities, and needed dependencies. --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/ruby/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/ruby/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/rust/README.md b/src/rust/README.md index 4756cb711..d62267ce5 100644 --- a/src/rust/README.md +++ b/src/rust/README.md @@ -7,7 +7,7 @@ Installs Rust, common Rust utilities, and their required dependencies ```json "features": { - "ghcr.io/devcontainers/features/rust:1": { + "ghcr.io/pauldotyu/features/rust:1": { "version": "latest" } } @@ -24,4 +24,4 @@ Installs Rust, common Rust utilities, and their required dependencies --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/rust/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/rust/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/sshd/README.md b/src/sshd/README.md index 511659e39..78fe0c1ec 100644 --- a/src/sshd/README.md +++ b/src/sshd/README.md @@ -7,7 +7,7 @@ Adds a SSH server into a container so that you can use an external terminal, sft ```json "features": { - "ghcr.io/devcontainers/features/sshd:1": { + "ghcr.io/pauldotyu/features/sshd:1": { "version": "latest" } } @@ -85,4 +85,4 @@ While the some services automates SSH setup (e.g., when using the GitHub CLI for --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/sshd/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/sshd/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/terraform/README.md b/src/terraform/README.md index 36c5d7786..c661f6140 100644 --- a/src/terraform/README.md +++ b/src/terraform/README.md @@ -7,7 +7,7 @@ Installs the Terraform CLI and optionally TFLint and Terragrunt. Auto-detects la ```json "features": { - "ghcr.io/devcontainers/features/terraform:1": { + "ghcr.io/pauldotyu/features/terraform:1": { "version": "latest" } } @@ -25,4 +25,4 @@ Installs the Terraform CLI and optionally TFLint and Terragrunt. Auto-detects la --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/terraform/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/pauldotyu/features/blob/main/src/terraform/devcontainer-feature.json). Add additional notes to a `NOTES.md`._