From 69f591d492c85269dc7ca25cbde9b84c12d7a52b Mon Sep 17 00:00:00 2001 From: Josh Spicer Date: Tue, 27 Dec 2022 10:18:52 -0500 Subject: [PATCH 1/7] Update devcontainer-feature.json --- src/desktop-lite/devcontainer-feature.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/desktop-lite/devcontainer-feature.json b/src/desktop-lite/devcontainer-feature.json index e0333867f..40744f624 100644 --- a/src/desktop-lite/devcontainer-feature.json +++ b/src/desktop-lite/devcontainer-feature.json @@ -3,7 +3,7 @@ "version": "1.0.6", "name": "Light-weight Desktop", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/desktop-lite", - "description": "Adds a lightweight Fluxbox based desktop to the container that can be accessed using a VNC viewer or the web. GUI-based commands executed from the built-in VS code terminal will open on the desktop automatically.", + "blahhhhh": "Adds a lightweight Fluxbox based desktop to the container that can be accessed using a VNC viewer or the web. GUI-based commands executed from the built-in VS code terminal will open on the desktop automatically.", "options": { "version": { "type": "string", From b1b1b5a2f3cc79d8d6baba96ed430b289bcc87f0 Mon Sep 17 00:00:00 2001 From: Josh Spicer Date: Tue, 27 Dec 2022 10:19:54 -0500 Subject: [PATCH 2/7] disable schema validation --- .github/workflows/release.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f8dfc7210..5367e4c54 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,5 +17,6 @@ jobs: with: publish-features: "true" base-path-to-features: "./src" + disable-schema-validation: "true" env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From ef96fe0676e0069c1a7e9d3c17eb4c32fc101bb7 Mon Sep 17 00:00:00 2001 From: Josh Spicer Date: Tue, 27 Dec 2022 12:49:59 -0500 Subject: [PATCH 3/7] Update devcontainer-feature.json --- src/node/devcontainer-feature.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/devcontainer-feature.json b/src/node/devcontainer-feature.json index 216f29b80..2d483f1d8 100644 --- a/src/node/devcontainer-feature.json +++ b/src/node/devcontainer-feature.json @@ -3,7 +3,7 @@ "version": "1.1.4", "name": "Node.js (via nvm) and yarn", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/node", - "description": "Installs Node.js, nvm, yarn, and needed dependencies.", + "blahhhh": "Installs Node.js, nvm, yarn, and needed dependencies.", "options": { "version": { "type": "string", From 1f9226c937bce482026078dee41f49774fd30304 Mon Sep 17 00:00:00 2001 From: Josh Spicer Date: Tue, 27 Dec 2022 12:50:19 -0500 Subject: [PATCH 4/7] Delete test-all.yaml --- .github/workflows/test-all.yaml | 115 -------------------------------- 1 file changed, 115 deletions(-) delete mode 100644 .github/workflows/test-all.yaml diff --git a/.github/workflows/test-all.yaml b/.github/workflows/test-all.yaml deleted file mode 100644 index cf876a481..000000000 --- a/.github/workflows/test-all.yaml +++ /dev/null @@ -1,115 +0,0 @@ -name: "CI - Test Features" -on: - push: - branches: - - main - workflow_dispatch: - -jobs: - test: - runs-on: ubuntu-latest - continue-on-error: true - strategy: - matrix: - features: [ - "anaconda", - "aws-cli", - "azure-cli", - "common-utils", - "conda", - "desktop-lite", - "docker-from-docker", - "docker-in-docker", - "dotnet", - "git", - "git-lfs", - "github-cli", - "go", - "hugo", - "java", - "kubectl-helm-minikube", - "node", - "nvidia-cuda", - "oryx", - "php", - "powershell", - "python", - "ruby", - "rust", - "sshd", - "terraform", - "nix", - ] - baseImage: - [ - "ubuntu:focal", - "ubuntu:jammy", - "ubuntu:bionic", - "debian:11", - "debian:10", - "mcr.microsoft.com/devcontainers/base:ubuntu", - "mcr.microsoft.com/devcontainers/base:debian", - ] - steps: - - uses: actions/checkout@v2 - - - name: "Install latest devcontainer CLI" - run: npm install -g @devcontainers/cli - - - name: "Generating tests for '${{ matrix.features }}' against '${{ matrix.baseImage }}'" - run: devcontainer features test --skip-scenarios -f ${{ matrix.features }} -i ${{ matrix.baseImage }} . - - test-scenarios: - runs-on: ubuntu-latest - continue-on-error: true - strategy: - matrix: - features: [ - "anaconda", - "aws-cli", - "azure-cli", - "common-utils", - "conda", - "desktop-lite", - "docker-from-docker", - "docker-in-docker", - "dotnet", - "git", - "git-lfs", - "github-cli", - "go", - "hugo", - "java", - "kubectl-helm-minikube", - "node", - "nvidia-cuda", - "oryx", - "php", - "powershell", - "python", - "ruby", - "rust", - "sshd", - "terraform", - "nix", - ] - steps: - - uses: actions/checkout@v2 - - - name: "Install latest devcontainer CLI" - run: npm install -g @devcontainers/cli - - - name: "Testing '${{ matrix.features }}' scenarios" - run: devcontainer features test -f ${{ matrix.features }} --skip-autogenerated . - - test-global: - runs-on: ubuntu-latest - continue-on-error: true - steps: - - uses: actions/checkout@v2 - - - name: "Install latest devcontainer CLI" - run: npm install -g @devcontainers/cli - - - name: "Testing global scenarios" - run: devcontainer features test --global-scenarios-only . \ No newline at end of file From 0afc537ce8bfdd2ed2ebaa0acc62b2032573145a Mon Sep 17 00:00:00 2001 From: Josh Spicer Date: Tue, 27 Dec 2022 12:52:29 -0500 Subject: [PATCH 5/7] Update release.yaml --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5367e4c54..d31c8019a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,4 +1,4 @@ -name: "Release dev container features" +name: "jospicer action --- Release dev container features" on: workflow_dispatch: push: @@ -13,10 +13,10 @@ jobs: - uses: actions/checkout@v2 - name: "Publish" - uses: devcontainers/action@v1 + uses: joshspicer/devcontainer-action@v0 with: publish-features: "true" base-path-to-features: "./src" - disable-schema-validation: "true" +# disable-schema-validation: "true" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 8d167827d38a2690786b4f555b2e07db0ccabfc0 Mon Sep 17 00:00:00 2001 From: Josh Spicer Date: Tue, 27 Dec 2022 12:53:25 -0500 Subject: [PATCH 6/7] Update release.yaml --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d31c8019a..12caef3c6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,6 +17,6 @@ jobs: with: publish-features: "true" base-path-to-features: "./src" -# disable-schema-validation: "true" + disable-schema-validation: "true" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 3e7df60a5584635602c30b5c18964a9c66e58202 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 27 Dec 2022 17:53:37 +0000 Subject: [PATCH 7/7] Automated documentation update [skip ci] --- src/anaconda/README.md | 4 ++-- src/aws-cli/README.md | 4 ++-- src/azure-cli/README.md | 4 ++-- src/common-utils/README.md | 4 ++-- src/conda/README.md | 4 ++-- src/desktop-lite/README.md | 6 +++--- 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/nix/README.md | 4 ++-- src/node/README.md | 6 +++--- 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 ++-- 27 files changed, 56 insertions(+), 56 deletions(-) diff --git a/src/anaconda/README.md b/src/anaconda/README.md index b230b50df..e69e15293 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/codspace/featuresfork/anaconda:1": {} } ``` @@ -34,4 +34,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/codspace/featuresfork/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 00b8cd583..c79199aab 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/codspace/featuresfork/aws-cli:1": {} } ``` @@ -21,4 +21,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/codspace/featuresfork/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 9b7735f70..506ba794b 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/codspace/featuresfork/azure-cli:1": {} } ``` @@ -23,4 +23,4 @@ Installs the Azure CLI along with needed dependencies. Useful for base Dockerfil --- -_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/codspace/featuresfork/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 e028faca7..5b83c423a 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:2": {} + "ghcr.io/codspace/featuresfork/common-utils:2": {} } ``` @@ -48,4 +48,4 @@ For `zsh`, the default theme is a [standard Oh My Zsh! theme](https://ohmyz.sh/) --- -_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/codspace/featuresfork/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 4fb75dd1f..cc824467e 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/codspace/featuresfork/conda:1": {} } ``` @@ -35,4 +35,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/codspace/featuresfork/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 9ee8227cc..e25a75a0b 100644 --- a/src/desktop-lite/README.md +++ b/src/desktop-lite/README.md @@ -1,13 +1,13 @@ # Light-weight Desktop (desktop-lite) -Adds a lightweight Fluxbox based desktop to the container that can be accessed using a VNC viewer or the web. GUI-based commands executed from the built-in VS code terminal will open on the desktop automatically. + ## Example Usage ```json "features": { - "ghcr.io/devcontainers/features/desktop-lite:1": {} + "ghcr.io/codspace/featuresfork/desktop-lite:1": {} } ``` @@ -89,4 +89,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/codspace/featuresfork/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 be32ce9dd..8a33f36a0 100644 --- a/src/docker-from-docker/README.md +++ b/src/docker-from-docker/README.md @@ -7,7 +7,7 @@ Re-use the host docker socket, adding the Docker CLI to a container. Feature inv ```json "features": { - "ghcr.io/devcontainers/features/docker-from-docker:1": {} + "ghcr.io/codspace/featuresfork/docker-from-docker:1": {} } ``` @@ -77,4 +77,4 @@ services: --- -_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/codspace/featuresfork/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 58f72c5a5..c0d6aa890 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:2": {} + "ghcr.io/codspace/featuresfork/docker-in-docker:2": {} } ``` @@ -31,4 +31,4 @@ This docker-in-docker Dev Container Feature is roughly based on the [official do --- -_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/codspace/featuresfork/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 784c7362e..d2c9b3fd6 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/codspace/featuresfork/dotnet:1": {} } ``` @@ -23,4 +23,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/codspace/featuresfork/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 a23a639a0..cb0c9118d 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/codspace/featuresfork/git-lfs:1": {} } ``` @@ -21,4 +21,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/codspace/featuresfork/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 287af4995..dcb47de73 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/codspace/featuresfork/git:1": {} } ``` @@ -22,4 +22,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/codspace/featuresfork/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 3670399da..1cb8fd391 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/codspace/featuresfork/github-cli:1": {} } ``` @@ -22,4 +22,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/codspace/featuresfork/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 5ea30c1fd..310f3d064 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/codspace/featuresfork/go:1": {} } ``` @@ -22,4 +22,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/codspace/featuresfork/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 bc6b99e7f..28e1aff72 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/codspace/featuresfork/hugo:1": {} } ``` @@ -22,4 +22,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/codspace/featuresfork/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 a9ef433fb..d294a8e50 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/codspace/featuresfork/java:1": {} } ``` @@ -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/codspace/featuresfork/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 bbb02028f..4612cf26b 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/codspace/featuresfork/kubectl-helm-minikube:1": {} } ``` @@ -35,4 +35,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/codspace/featuresfork/blob/main/src/kubectl-helm-minikube/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/nix/README.md b/src/nix/README.md index d331f8923..2af036932 100644 --- a/src/nix/README.md +++ b/src/nix/README.md @@ -7,7 +7,7 @@ Installs the Nix package manager and optionally a set of packages. ```json "features": { - "ghcr.io/devcontainers/features/nix:1": {} + "ghcr.io/codspace/featuresfork/nix:1": {} } ``` @@ -53,4 +53,4 @@ This same command can be used to restart the daemon if it has stopped for some r --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/nix/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/codspace/featuresfork/blob/main/src/nix/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/node/README.md b/src/node/README.md index 0bd837af3..c0170afcd 100644 --- a/src/node/README.md +++ b/src/node/README.md @@ -1,13 +1,13 @@ # Node.js (via nvm) and yarn (node) -Installs Node.js, nvm, yarn, and needed dependencies. + ## Example Usage ```json "features": { - "ghcr.io/devcontainers/features/node:1": {} + "ghcr.io/codspace/featuresfork/node:1": {} } ``` @@ -42,4 +42,4 @@ Alternatively, you can start up an interactive shell which will in turn source ` --- -_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/codspace/featuresfork/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 5e76d7243..6e9d4f9b9 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/codspace/featuresfork/nvidia-cuda:1": {} } ``` @@ -43,4 +43,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/codspace/featuresfork/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 670a6d1a0..de9d73398 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/codspace/featuresfork/oryx:1": {} } ``` @@ -17,4 +17,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/codspace/featuresfork/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 c979e39b9..cb370f0bb 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/codspace/featuresfork/php:1": {} } ``` @@ -22,4 +22,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/codspace/featuresfork/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 0ff0469c5..f3650c6d0 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/codspace/featuresfork/powershell:1": {} } ``` @@ -21,4 +21,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/codspace/featuresfork/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 47abf5e31..dcda80d2c 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/codspace/featuresfork/python:1": {} } ``` @@ -26,4 +26,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/codspace/featuresfork/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 ffb136d47..1eb7d9858 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/codspace/featuresfork/ruby:1": {} } ``` @@ -21,4 +21,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/codspace/featuresfork/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 14af4ad49..7e70bff05 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/codspace/featuresfork/rust:1": {} } ``` @@ -22,4 +22,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/codspace/featuresfork/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 5245d6805..1f5fc2dd5 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/codspace/featuresfork/sshd:1": {} } ``` @@ -83,4 +83,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/codspace/featuresfork/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 5d6b47fec..ef461414f 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/codspace/featuresfork/terraform:1": {} } ``` @@ -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/codspace/featuresfork/blob/main/src/terraform/devcontainer-feature.json). Add additional notes to a `NOTES.md`._