diff --git a/README.md b/README.md index c27d7b4b15..6b384de810 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,6 @@ A **development container** is a running [Docker](https://www.docker.com) contai This repository contains a set of **dev container definitions** to help get you up and running with a containerized environment. The definitions describe the appropriate container image, runtime arguments for starting the container, and VS Code extensions that should be installed. Each provides a container configuration file (`devcontainer.json`) and other needed files that you can drop into any existing folder as a starting point for containerizing your project. -> **Note:** While many of these definitions are also expected to work in [GitHub Codespaces](https://github.com/features/codespaces), a few are not yet working. See [here for a list of known issues](containers/CODESPACES.md). - The [vscode-remote-try-*](https://github.com/search?q=org%3Amicrosoft+vscode-remote-try-&type=Repositories) repositories may also be of interest if you are looking for complete sample projects. ## Adding a definition to a local project diff --git a/container-templates/docker-compose/.devcontainer/devcontainer.json b/container-templates/docker-compose/.devcontainer/devcontainer.json index 12c1c82346..0778322392 100644 --- a/container-templates/docker-compose/.devcontainer/devcontainer.json +++ b/container-templates/docker-compose/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "name": "Dev Container Definition Template - Docker Compose", + "name": "Your Definition Name Here (Community)", // Update the 'dockerComposeFile' list if you have more compose files or use different names. "dockerComposeFile": "docker-compose.yml", diff --git a/container-templates/docker-compose/README.md b/container-templates/docker-compose/README.md index acd95fc461..988e2ac166 100644 --- a/container-templates/docker-compose/README.md +++ b/container-templates/docker-compose/README.md @@ -1,17 +1,18 @@ -# [Name of Definition Here] +# [Name of Definition Here] (Community) ## Summary -_[A short description of the the purpose of the definition goes here.]_ - -| Metadata | Value | -| --------------------------- | ------------------------------------------------ | -| _Contributors_ | [Your name, email and/or GitHub profile] | -| _Definition type_ | Docker Compose | -| _Works in Codespaces_ | Yes / No | -| _Container host OS support_ | Linux, macOS, Windows | -| _Container OS_ | Debian | -| _Languages, platforms_ | [Languages and platforms the container supports] | +*[A short description of the the purpose of the definition goes here.]* + +| Metadata | Value | +|---------------------------- | -----------------------------------------------------------------------------| +| *Contributors* | [Your name, GitHub profile] | +| *Categories* | Community, [Languages, Frameworks, Services, Azure, GCP, AWS, GitHub, Other] | +| *Definition type* | Docker Compose | +| *Works in Codespaces* | Yes / No | +| *Container host OS support* | Linux, macOS, Windows | +| *Container OS* | [OS used by container - e.g. Debian] | +| *Languages, platforms* | [Languages and platforms the container supports] | ## [Optional] Description diff --git a/container-templates/dockerfile/.devcontainer/devcontainer.json b/container-templates/dockerfile/.devcontainer/devcontainer.json index e67969f175..feef6d2532 100644 --- a/container-templates/dockerfile/.devcontainer/devcontainer.json +++ b/container-templates/dockerfile/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "name": "Dev Container Definition Template - Dockerfile", + "name": "Your Definition Name Here (Community)", // Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename. "build": { diff --git a/container-templates/dockerfile/README.md b/container-templates/dockerfile/README.md index 3fdadeb87d..8a96bae1c0 100644 --- a/container-templates/dockerfile/README.md +++ b/container-templates/dockerfile/README.md @@ -1,18 +1,18 @@ -# [Name of Definition Here] +# [Name of Definition Here] (Community) ## Summary *[A short description of the the purpose of the definition goes here.]* -| Metadata | Value | -| --------------------------- | ------------------------------------------------ | -| *Contributors* | [Your name, email and/or GitHub profile] | -| *Definition type* | Dockerfile | -| *Definition category* | [Base images, Languages, Platforms, Azure, AWS, GCP, DevOps], Community | -| *Works in Codespaces* | Yes / No | -| *Container host OS support* | Linux, macOS, Windows | -| *Container OS* | [OS used by continer - e.g. Debian] | -| *Languages, platforms* | [Languages and platforms the container supports] | +| Metadata | Value | +|---------------------------- | -----------------------------------------------------------------------------| +| *Contributors* | [Your name, GitHub profile] | +| *Categories* | Community, [Languages, Frameworks, Services, Azure, GCP, AWS, GitHub, Other] | +| *Definition type* | Dockerfile | +| *Works in Codespaces* | Yes / No | +| *Container host OS support* | Linux, macOS, Windows | +| *Container OS* | [OS used by continer - e.g. Debian] | +| *Languages, platforms* | [Languages and platforms the container supports] | ## [Optional] Description diff --git a/container-templates/image/.devcontainer/devcontainer.json b/container-templates/image/.devcontainer/devcontainer.json index f2e6786fb0..ff5724fac1 100644 --- a/container-templates/image/.devcontainer/devcontainer.json +++ b/container-templates/image/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "name": "Dev Container Definition Template - Container Image", + "name": "Your Definition Name Here (Community)", // Update the 'image' property with your Docker image name. "image": "mcr.microsoft.com/vscode/devcontainers/base:debian-10", diff --git a/container-templates/image/README.md b/container-templates/image/README.md index 7a7df38277..4e9269d5d5 100644 --- a/container-templates/image/README.md +++ b/container-templates/image/README.md @@ -1,17 +1,18 @@ -# [Name of Definition Here] +# [Name of Definition Here] (Community) ## Summary -_[A short description of the the purpose of the definition goes here.]_ +*[A short description of the the purpose of the definition goes here.]* -| Metadata | Value | -| --------------------------- | ------------------------------------------------ | -| _Contributors_ | [Your name, email and/or GitHub profile] | -| _Definition type_ | Image | -| _Works in Codespaces_ | Yes / No | -| _Container host OS support_ | Linux, macOS, Windows | -| _Container OS_ | [OS used by container - e.g. Debian] | -| _Languages, platforms_ | [Languages and platforms the container supports] | +| Metadata | Value | +|---------------------------- | -----------------------------------------------------------------------------| +| *Contributors* | [Your name, GitHub profile] | +| *Categories* | Community, [Languages, Frameworks, Services, Azure, GCP, AWS, GitHub, Other] | +| *Definition type* | Image | +| *Works in Codespaces* | Yes / No | +| *Container host OS support* | Linux, macOS, Windows | +| *Container OS* | [OS used by container - e.g. Debian] | +| *Languages, platforms* | [Languages and platforms the container supports] | ## [Optional] Description @@ -57,4 +58,4 @@ This definition includes some test code that will help you verify it is working Copyright (c) Microsoft Corporation. All rights reserved. -Licensed under the MIT License. See [LICENSE](https://github.com/Microsoft/vscode-dev-containers/blob/master/LICENSE). \ No newline at end of file +Licensed under the MIT License. See [LICENSE](https://github.com/Microsoft/vscode-dev-containers/blob/master/LICENSE). diff --git a/containers/README.md b/containers/README.md index 2817dcaf38..222d51ddaa 100644 --- a/containers/README.md +++ b/containers/README.md @@ -13,4 +13,3 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md) for details on contributing to this re Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See [LICENSE](https://github.com/Microsoft/vscode-dev-containers/blob/master/LICENSE) - diff --git a/containers/alpine/README.md b/containers/alpine/README.md index 99339656de..31ee8d2021 100644 --- a/containers/alpine/README.md +++ b/containers/alpine/README.md @@ -7,11 +7,12 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Core, Other | | *Definition type* | Dockerfile | | *Published images* | mcr.microsoft.com/vscode/devcontainers/base:alpine | | *Available image variants* | 3.10, 3.11, 3.12 ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/base/tags/list)) | | *Published image architecture(s)* | x86-64 | -| *Works in Codespaces* | No ([#458](https://github.com/MicrosoftDocs/vsonline/issues/458)) | +| *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | | *Container OS* | Alpine Linux | | *Languages, platforms* | Any | diff --git a/containers/azure-ansible/README.md b/containers/azure-ansible/README.md index b17d721a18..0318e3b464 100644 --- a/containers/azure-ansible/README.md +++ b/containers/azure-ansible/README.md @@ -1,4 +1,4 @@ -# Azure Ansible +# Azure Ansible (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | [Carlos Mendible](https://github.com/cmendible) | +| *Categories* | Community, Azure, Other | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/azure-bicep/README.md b/containers/azure-bicep/README.md index ef93573779..2ad3e7d422 100644 --- a/containers/azure-bicep/README.md +++ b/containers/azure-bicep/README.md @@ -1,4 +1,4 @@ -# Azure Bicep +# Azure Bicep (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | [Carlos Mendible](https://github.com/cmendible) | +| *Categories* | Community, Services, Azure | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/azure-blockchain/README.md b/containers/azure-blockchain/README.md index 7d792b5f1c..ece9b2fe30 100644 --- a/containers/azure-blockchain/README.md +++ b/containers/azure-blockchain/README.md @@ -1,4 +1,4 @@ -# Azure Blockchain +# Azure Blockchain (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | [Carlos Mendible](https://github.com/cmendible) | +| *Categories* | Community, Services, Azure | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/azure-cli/README.md b/containers/azure-cli/README.md index 5099451c66..b7d42f5536 100644 --- a/containers/azure-cli/README.md +++ b/containers/azure-cli/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Services, Azure | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/azure-functions-dotnetcore-2.1/.devcontainer/devcontainer.json b/containers/azure-functions-dotnetcore-2.1/.devcontainer/devcontainer.json index 5ce72fd2de..0c87e169a5 100644 --- a/containers/azure-functions-dotnetcore-2.1/.devcontainer/devcontainer.json +++ b/containers/azure-functions-dotnetcore-2.1/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "name": "Azure Functions & C# (.NET Core 2.1)", + "name": "Azure Functions & C# - .NET Core 2.1", "dockerFile": "Dockerfile", "forwardPorts": [ 7071 ], diff --git a/containers/azure-functions-dotnetcore-2.1/README.md b/containers/azure-functions-dotnetcore-2.1/README.md index 81ddc12a18..2d2e55b6c9 100644 --- a/containers/azure-functions-dotnetcore-2.1/README.md +++ b/containers/azure-functions-dotnetcore-2.1/README.md @@ -1,4 +1,4 @@ -# Azure Functions & C# (.NET Core 2.1) +# Azure Functions & C# - .NET Core 2.1 ## Summary @@ -6,7 +6,8 @@ | Metadata | Value | |----------|-------| -| *Contributors* | The VS Code Team | +| *Contributors* | The Azure Functions Team, @brandonh-msft | +| *Categories* | Services, Azure | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/azure-functions-dotnetcore-3.1/.devcontainer/devcontainer.json b/containers/azure-functions-dotnetcore-3.1/.devcontainer/devcontainer.json index 7f6b9c1b62..a495c5772f 100644 --- a/containers/azure-functions-dotnetcore-3.1/.devcontainer/devcontainer.json +++ b/containers/azure-functions-dotnetcore-3.1/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "name": "Azure Functions & C# (.NET Core 3.1)", + "name": "Azure Functions & C# - .NET Core 3.1", "dockerFile": "Dockerfile", "forwardPorts": [ 7071 ], diff --git a/containers/azure-functions-dotnetcore-3.1/README.md b/containers/azure-functions-dotnetcore-3.1/README.md index 853382d70d..a38cf58696 100644 --- a/containers/azure-functions-dotnetcore-3.1/README.md +++ b/containers/azure-functions-dotnetcore-3.1/README.md @@ -1,4 +1,4 @@ -# Azure Functions & C# (.NET Core 3.1) +# Azure Functions & C# - .NET Core 3.1 ## Summary @@ -6,7 +6,8 @@ | Metadata | Value | |----------|-------| -| *Contributors* | The VS Code Team, brandonh-msft | +| *Contributors* | The Azure Functions Team, @brandonh-msft | +| *Categories* | Services, Azure | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/azure-functions-java-11/README.md b/containers/azure-functions-java-11/README.md index 0aafa90b21..16ac110602 100644 --- a/containers/azure-functions-java-11/README.md +++ b/containers/azure-functions-java-11/README.md @@ -6,7 +6,8 @@ | Metadata | Value | |----------|-------| -| *Contributors* | The VS Code Java Team | +| *Contributors* | The Azure Functions Team | +| *Categories* | Services, Azure | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/azure-functions-java-8/README.md b/containers/azure-functions-java-8/README.md index 01fecd80d1..45279e11d4 100644 --- a/containers/azure-functions-java-8/README.md +++ b/containers/azure-functions-java-8/README.md @@ -6,7 +6,8 @@ | Metadata | Value | |----------|-------| -| *Contributors* | The VS Code Java Team | +| *Contributors* | The Azure Functions Team | +| *Categories* | Services, Azure | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/azure-functions-node/README.md b/containers/azure-functions-node/README.md index 7c26260104..9a4db23a92 100644 --- a/containers/azure-functions-node/README.md +++ b/containers/azure-functions-node/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The Azure Functions Team | +| *Categories* | Services, Azure | | *Definition type* | Dockerfile | | *Published images* | mcr.microsoft.com/azure-functions/node | | *Available image variants* | 10, 12 | diff --git a/containers/azure-functions-pwsh/README.md b/containers/azure-functions-pwsh/README.md index 5d1a864cd3..83f1b50ea8 100644 --- a/containers/azure-functions-pwsh/README.md +++ b/containers/azure-functions-pwsh/README.md @@ -6,7 +6,8 @@ | Metadata | Value | |----------|-------| -| *Contributors* | [brettmillerb](https://github.com/brettmillerb) | +| *Contributors* | The Azure Functions Team, [@brettmillerb](https://github.com/brettmillerb) | +| *Categories* | Services, Azure | | *Definition type* | Dockerfile | | *Published images* | mcr.microsoft.com/azure-functions/powershell | | *Available image variants* | 6, 7 | diff --git a/containers/azure-functions-python-3/README.md b/containers/azure-functions-python-3/README.md index c9a6360870..cfc3ae436d 100644 --- a/containers/azure-functions-python-3/README.md +++ b/containers/azure-functions-python-3/README.md @@ -6,7 +6,8 @@ | Metadata | Value | |----------|-------| -| *Contributors* | [Anthony Chu](https://github.com/anthonychu) | +| *Contributors* | The Azure Functions Team, [Anthony Chu](https://github.com/anthonychu) | +| *Categories* | Services, Azure | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/azure-machine-learning-python-3/README.md b/containers/azure-machine-learning-python-3/README.md index 6de5f86339..0dbf325ca6 100644 --- a/containers/azure-machine-learning-python-3/README.md +++ b/containers/azure-machine-learning-python-3/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Services, Azure | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/azure-static-web-apps/README.md b/containers/azure-static-web-apps/README.md index 45fdadac6b..50a8f7b3c0 100644 --- a/containers/azure-static-web-apps/README.md +++ b/containers/azure-static-web-apps/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The Azure Functions Team & alvaro.videla@microsoft.com | +| *Categories* | Services, Azure | | *Definition type* | Dockerfile | | *Published image architecture(s)* | x86-64 | | *Works in Codespaces* | Yes | diff --git a/containers/azure-terraform/README.md b/containers/azure-terraform/README.md index a730ec74fe..cd1b7ab9a0 100644 --- a/containers/azure-terraform/README.md +++ b/containers/azure-terraform/README.md @@ -1,4 +1,4 @@ -# Azure Terraform +# Azure Terraform (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | [Carlos Mendible](https://github.com/cmendible) | +| *Categories* | Community, Azure, Other | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/bash/README.md b/containers/bash/README.md index e794d7a9e0..95847645ce 100644 --- a/containers/bash/README.md +++ b/containers/bash/README.md @@ -1,4 +1,4 @@ -# Bash +# Bash (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | | --------------------------- | -------------------------------------------- | | *Contributors* | [Aaryn Smith](https://gitlab.com/aarynsmith) | +| *Categories* | Community, Languages | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/bazel/README.md b/containers/bazel/README.md index 5a017892d7..fcedeb40a3 100644 --- a/containers/bazel/README.md +++ b/containers/bazel/README.md @@ -1,4 +1,4 @@ -# Bazel +# Bazel (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | William Phetsinorath | +| *Categories* | Community, Other | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/codespaces-linux-stretch/README.md b/containers/codespaces-linux-stretch/README.md index 78dcc71c3a..365c634619 100644 --- a/containers/codespaces-linux-stretch/README.md +++ b/containers/codespaces-linux-stretch/README.md @@ -6,7 +6,8 @@ | Metadata | Value | |----------|-------| -| *Contributors* | The GitHub Codespaces and VS Code teams | +| *Contributors* | The GitHub Codespaces team | +| *Categories* | Services, GitHub | | *Definition type* | Dockerfile | | *Published image* | mcr.microsoft.com/vscode/devcontainers/universal:0-stretch
mcr.microsoft.com/vscode/devcontainers/universal:0-linux | | *Published image architecture(s)* | x86-64 | diff --git a/containers/codespaces-linux/README.md b/containers/codespaces-linux/README.md index d5ef59a928..a3b585b612 100644 --- a/containers/codespaces-linux/README.md +++ b/containers/codespaces-linux/README.md @@ -6,7 +6,8 @@ | Metadata | Value | |----------|-------| -| *Contributors* | The GitHub Codespaces and VS Code teams | +| *Contributors* | The GitHub Codespaces team | +| *Categories* | Services, GitHub | | *Definition type* | Dockerfile | | *Published image* | mcr.microsoft.com/vscode/devcontainers/universal:linux
mcr.microsoft.com/vscode/devcontainers/universal:focal | | *Published image architecture(s)* | x86-64 | diff --git a/containers/cpp/README.md b/containers/cpp/README.md index 68329ac250..7ed6825936 100644 --- a/containers/cpp/README.md +++ b/containers/cpp/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Core, Languages | | *Definition type* | Dockerfile | | *Published images* | mcr.microsoft.com/vscode/devcontainers/cpp | | *Available image variants* | stretch, buster, bionic, focal ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/cpp/tags/list)) | diff --git a/containers/dapr-dotnetcore-3.1/README.md b/containers/dapr-dotnetcore-3.1/README.md index 266e5476e5..beca858945 100644 --- a/containers/dapr-dotnetcore-3.1/README.md +++ b/containers/dapr-dotnetcore-3.1/README.md @@ -1,4 +1,4 @@ -# Dapr with C# (.NET Core 3.1) +# Dapr with C# (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The Visual Studio Container Tools team | +| *Categories* | Community, Frameworks | | *Definition type* | Docker Compose | | *Works in Codespaces* | No | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/dapr-typescript-node/README.md b/containers/dapr-typescript-node/README.md index 26a8454f2e..7b4d9c7856 100644 --- a/containers/dapr-typescript-node/README.md +++ b/containers/dapr-typescript-node/README.md @@ -1,4 +1,4 @@ -# Dapr with Node.js & TypeScript +# Dapr with Node.js & TypeScript (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The Visual Studio Container Tools team | +| *Categories* | Community, Frameworks | | *Definition type* | Docker Compose | | *Works in Codespaces* | No | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/dart/README.md b/containers/dart/README.md index e28c276661..9186ea06cc 100644 --- a/containers/dart/README.md +++ b/containers/dart/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Languages | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/debian/README.md b/containers/debian/README.md index cbd6f80826..44658aa00c 100644 --- a/containers/debian/README.md +++ b/containers/debian/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Core, Other | | *Definition type* | Dockerfile | | *Published images* | mcr.microsoft.com/vscode/devcontainers/base:debian | | *Available image variants* | stretch, buster ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/base/tags/list)) | diff --git a/containers/deno/README.md b/containers/deno/README.md index a1cd39c2fd..5ad233801d 100644 --- a/containers/deno/README.md +++ b/containers/deno/README.md @@ -1,4 +1,4 @@ -# Deno +# Deno (Community) ## Summary @@ -6,7 +6,8 @@ | Metadata | Value | |----------|-------| -| *Contributors* | anthonychu | +| *Contributors* | @anthonychu | +| *Categories* | Community, Languages | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/docker-existing-docker-compose/README.md b/containers/docker-existing-docker-compose/README.md index f1b7500005..34e6d57826 100644 --- a/containers/docker-existing-docker-compose/README.md +++ b/containers/docker-existing-docker-compose/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code team | +| *Categories* | Core, Other | | *Definition type* | Docker Compose | | *Container host OS support* | Linux, macOS, Windows | | *Languages, platforms* | Any | diff --git a/containers/docker-existing-dockerfile/README.md b/containers/docker-existing-dockerfile/README.md index d4f884cfc6..e178864dde 100644 --- a/containers/docker-existing-dockerfile/README.md +++ b/containers/docker-existing-dockerfile/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code team | +| *Categories* | Core, Other | | *Definition type* | Dockerfile | | *Container host OS support* | Linux, macOS, Windows | | *Languages, platforms* | Any | diff --git a/containers/docker-from-docker-compose/README.md b/containers/docker-from-docker-compose/README.md index a69c0f63fc..ccf92a2d02 100644 --- a/containers/docker-from-docker-compose/README.md +++ b/containers/docker-from-docker-compose/README.md @@ -2,11 +2,12 @@ ## Summary -*Use Docker Compose to configure access to your local Docker install from inside a container. Installs Docker extension in the container along with needed CLIs.* +*Acess your host's Docker install from inside a container when using Docker Compose. Installs Docker extension in the container along with needed CLIs.* | Metadata | Value | |----------|-------| | *Contributors* | The VS Code team | +| *Categories* | Core, Other | | *Definition type* | Docker Compose | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/docker-from-docker/README.md b/containers/docker-from-docker/README.md index 6d13930b70..b7ac8527f6 100644 --- a/containers/docker-from-docker/README.md +++ b/containers/docker-from-docker/README.md @@ -2,11 +2,12 @@ ## Summary -*Access your local Docker install from inside a dev container. Installs Docker extension in the container along with needed CLIs.* +*Access your host's Docker install from inside a dev container. Installs Docker extension in the container along with needed CLIs.* | Metadata | Value | |----------|-------| | *Contributors* | The VS Code team | +| *Categories* | Core, Other | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/docker-in-docker/README.md b/containers/docker-in-docker/README.md index 46a99cfd45..8200c4e1e4 100644 --- a/containers/docker-in-docker/README.md +++ b/containers/docker-in-docker/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | GitHub Codespaces Team | +| *Categories* | Core, Other | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/dotnet-fsharp/README.md b/containers/dotnet-fsharp/README.md index aac6261572..76ed8b03f0 100644 --- a/containers/dotnet-fsharp/README.md +++ b/containers/dotnet-fsharp/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team, F# team | +| *Categories* | Languages | | *Definition type* | Dockerfile | | *Published image architecture(s)* | x86-64 | | *Works in Codespaces* | Yes | diff --git a/containers/dotnet-mssql/README.md b/containers/dotnet-mssql/README.md index 06fe7e489d..7f575ffc44 100644 --- a/containers/dotnet-mssql/README.md +++ b/containers/dotnet-mssql/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The Azure Data Team | +| *Categories* | Languages | | *Definition type* | Docker Compose | | *Published image architecture(s)* | x86-64 | | *Available image variants* | 2.1, 3.1, 5.0 | diff --git a/containers/dotnet/README.md b/containers/dotnet/README.md index 2caa1eb4ce..03d71adcde 100644 --- a/containers/dotnet/README.md +++ b/containers/dotnet/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Core, Languages | | *Definition type* | Dockerfile | | *Published images* | mcr.microsoft.com/vscode/devcontainers/dotnet
mcr.microsoft.com/vscode/devcontainers/dotnetcore | | *Available image variants* | 2.1, 3.1, 5.0 ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/dotnet/tags/list)) | diff --git a/containers/elixir-phoenix-postgres/README.md b/containers/elixir-phoenix-postgres/README.md index bf9d58dc76..7684773bfc 100644 --- a/containers/elixir-phoenix-postgres/README.md +++ b/containers/elixir-phoenix-postgres/README.md @@ -1,4 +1,4 @@ -# Elixir, Phoenix, Node.js & PostgresSQL +# Elixir, Phoenix, Node.js & PostgresSQL (Community) ## Summary @@ -7,6 +7,7 @@ _Develop Elixir/Phoenix based applications. Includes everything you need to get | Metadata | Value | | --------------------------- | --------------------- | | _Contributors_ | [idyll](https://github.com/idyll), [Talk2MeGooseman](https://github.com/talk2MeGooseman)| +| _Category_ | Community, Languages, Frameworks | | _Definition type_ | Dockerfile | | _Works in Codespaces_ | Yes | | _Container host OS support_ | Linux, macOS, Windows | diff --git a/containers/elm/README.md b/containers/elm/README.md index 080e78445f..c394381a35 100644 --- a/containers/elm/README.md +++ b/containers/elm/README.md @@ -1,4 +1,4 @@ -# Elm +# Elm (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | xWiiLLz, @andys8 | +| *Categories* | Community, Languages | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/go/README.md b/containers/go/README.md index 1dbd63c06b..2a11e62c59 100644 --- a/containers/go/README.md +++ b/containers/go/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Core, Languages | | *Definition type* | Dockerfile | | *Published images* | mcr.microsoft.com/vscode/devcontainers/go | | *Available image variants* | 1, 1.15, 1.14 ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/go/tags/list)) | diff --git a/containers/hugo/README.md b/containers/hugo/README.md index 57bbf2740f..9970ba9ef1 100644 --- a/containers/hugo/README.md +++ b/containers/hugo/README.md @@ -7,6 +7,7 @@ | Metadata | Value | | --------------------------- | -------------------------------------------- | | *Contributors* | [Aaryn Smith](https://gitlab.com/aarynsmith) | +| *Categories* | Community, Frameworks | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/java-8/README.md b/containers/java-8/README.md index 520674e4d6..55bef46a0c 100644 --- a/containers/java-8/README.md +++ b/containers/java-8/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Java Team | +| *Categories* | Core, Languages | | *Definition type* | Dockerfile | | *Published images* | mcr.microsoft.com/vscode/devcontainers/java:8 | | *Published image architecture(s)* | x86-64 | diff --git a/containers/java/README.md b/containers/java/README.md index b4cf892c34..b57b6ef1de 100644 --- a/containers/java/README.md +++ b/containers/java/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Java Team | +| *Categories* | Core, Languages | | *Definition type* | Dockerfile | | *Published images* | mcr.microsoft.com/vscode/devcontainers/java | | *Available image variants* | 11, 15 ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/java/tags/list)) | diff --git a/containers/javascript-node-mongo/README.md b/containers/javascript-node-mongo/README.md index 5e2b3f4742..f848151455 100644 --- a/containers/javascript-node-mongo/README.md +++ b/containers/javascript-node-mongo/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Core, Languages | | *Definition type* | Docker Compose | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/javascript-node-postgres/.devcontainer/devcontainer.json b/containers/javascript-node-postgres/.devcontainer/devcontainer.json index adf7900e69..8ff366955c 100644 --- a/containers/javascript-node-postgres/.devcontainer/devcontainer.json +++ b/containers/javascript-node-postgres/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ // Update the VARIANT arg in docker-compose.yml to pick a Node.js version: 10, 12, 14 { - "name": "Node.js & PostgreSQL", + "name": "Node.js & PostgreSQL (Community)", "dockerComposeFile": "docker-compose.yml", "service": "app", "workspaceFolder": "/workspace", diff --git a/containers/javascript-node-postgres/README.md b/containers/javascript-node-postgres/README.md index fa87f319c4..72ca6c6ce4 100644 --- a/containers/javascript-node-postgres/README.md +++ b/containers/javascript-node-postgres/README.md @@ -1,4 +1,4 @@ -# Node.js & PostgreSQL +# Node.js & PostgreSQL (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | [Mehant](mailto:kmehant@gmail.com) | +| *Categories* | Community, Languages | | *Definition type* | Docker Compose | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/javascript-node/README.md b/containers/javascript-node/README.md index b25723ae9a..38d5f45215 100644 --- a/containers/javascript-node/README.md +++ b/containers/javascript-node/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Core, Languages | | *Definition type* | Dockerfile | | *Published image* | mcr.microsoft.com/vscode/devcontainers/javascript-node | | *Available image variants* | 10, 12, 14 ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/javascript-node/tags/list)) | diff --git a/containers/jekyll/README.md b/containers/jekyll/README.md index 48d22a4e2a..f1262745b5 100644 --- a/containers/jekyll/README.md +++ b/containers/jekyll/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | [Carlos Mendible](https://github.com/cmendible) | +| *Categories* | Community, Languages, Frameworks | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/julia/README.md b/containers/julia/README.md index 30cbadd91f..8a20b29e82 100644 --- a/containers/julia/README.md +++ b/containers/julia/README.md @@ -1,4 +1,4 @@ -# Julia +# Julia (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | David Anthoff, github.com/davidanthoff | +| *Categories* | Community, Languages | | *Definition type* | Image | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/kubernetes-helm/README.md b/containers/kubernetes-helm/README.md index e095768531..35bae6eb78 100644 --- a/containers/kubernetes-helm/README.md +++ b/containers/kubernetes-helm/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code team and Phetsinorath William | +| *Categories* | Other | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/markdown/README.md b/containers/markdown/README.md index f12a39787a..42f90690fc 100644 --- a/containers/markdown/README.md +++ b/containers/markdown/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Languages | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/perl/README.md b/containers/perl/README.md index 925771a17c..3b8fa1fad0 100644 --- a/containers/perl/README.md +++ b/containers/perl/README.md @@ -1,4 +1,4 @@ -# Perl +# Perl (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | [Mehant](mailto:kmehant@gmail.com) | +| *Categories* | Community, Languages | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/php-mariadb/.devcontainer/devcontainer.json b/containers/php-mariadb/.devcontainer/devcontainer.json index 373d160bc2..80bbba5219 100644 --- a/containers/php-mariadb/.devcontainer/devcontainer.json +++ b/containers/php-mariadb/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ // Update the VARIANT arg in docker-compose.yml to pick a PHP version: 7, 7.3, 7.4 { - "name": "PHP & MariaDB", + "name": "PHP & MariaDB (Community)", "dockerComposeFile": "docker-compose.yml", "service": "app", "workspaceFolder": "/workspace", diff --git a/containers/php-mariadb/README.md b/containers/php-mariadb/README.md index 4b950edda3..be7b569be5 100644 --- a/containers/php-mariadb/README.md +++ b/containers/php-mariadb/README.md @@ -1,4 +1,4 @@ -# PHP & MariaDB +# PHP & MariaDB (Community) ## Summary @@ -7,6 +7,7 @@ Develop PHP based applications with MariaDB (MySQL Compatible). Includes necess | Metadata | Value | |----------|-------| | *Contributors* | Richard Morrill [github.com/ThoolooExpress](https://github.com/ThoolooExpress) | +| *Categories* | Community, Languages | | *Definition type* | Docker Compose | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/php/README.md b/containers/php/README.md index f1de749900..a59c1caac6 100644 --- a/containers/php/README.md +++ b/containers/php/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Languages | | *Definition type* | Dockerfile | | *Published images* | mcr.microsoft.com/vscode/devcontainers/php | | *Available image variants* | 8, 8.0, 7, 7.3, 7.4 ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/php/tags/list)) | diff --git a/containers/powershell/README.md b/containers/powershell/README.md index b6eb064592..f277f1de8b 100644 --- a/containers/powershell/README.md +++ b/containers/powershell/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Languages | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/puppet/README.md b/containers/puppet/README.md index 3603e6cefd..3a74de9b56 100644 --- a/containers/puppet/README.md +++ b/containers/puppet/README.md @@ -1,4 +1,4 @@ -# Puppet Development Kit Docker Container +# Puppet Development Kit Docker Container (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | Puppet | +| *Categories* | Community, Other | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/python-3-anaconda/README.md b/containers/python-3-anaconda/README.md index dfec2decac..a5ebc8c809 100644 --- a/containers/python-3-anaconda/README.md +++ b/containers/python-3-anaconda/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The [VS Code Python extension](https://marketplace.visualstudio.com/itemdetails?itemName=ms-python.python) team | +| *Categories* | Languages | | *Definition type* | Dockerfile | | *Published image* | mcr.microsoft.com/vscode/devcontainers/anaconda:3 | | *Published image architecture(s)* | x86-64 | diff --git a/containers/python-3-device-simulator-express/README.md b/containers/python-3-device-simulator-express/README.md index 3c252ee1f6..d6e0279dd5 100644 --- a/containers/python-3-device-simulator-express/README.md +++ b/containers/python-3-device-simulator-express/README.md @@ -1,4 +1,4 @@ -# Python 3 & Device Simulator Express +# Python 3 & Device Simulator Express (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | [Carlos Mendible](https://github.com/cmendible) | +| *Categories* | Community, Other | | *Definition type* | Dockerfile | | *Published image architecture(s)* | x86-64 | | *Works in Codespaces* | Yes | diff --git a/containers/python-3-miniconda/README.md b/containers/python-3-miniconda/README.md index edeada3e37..2accd30a0b 100644 --- a/containers/python-3-miniconda/README.md +++ b/containers/python-3-miniconda/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The [VS Code Python extension](https://marketplace.visualstudio.com/itemdetails?itemName=ms-python.python) team | +| *Categories* | Languages | | *Definition type* | Dockerfile | | *Published image* | mcr.microsoft.com/vscode/devcontainers/miniconda:3 | | *Published image architecture(s)* | x86-64 | diff --git a/containers/python-3-postgres/README.md b/containers/python-3-postgres/README.md index 5329823005..ff5091a863 100644 --- a/containers/python-3-postgres/README.md +++ b/containers/python-3-postgres/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The [VS Code Python extension](https://marketplace.visualstudio.com/itemdetails?itemName=ms-python.python) team | +| *Categories* | Core, Languages | | *Definition type* | Docker Compose | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/python-3/README.md b/containers/python-3/README.md index f44fa79ace..40f837c777 100644 --- a/containers/python-3/README.md +++ b/containers/python-3/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The [VS Code Python extension](https://marketplace.visualstudio.com/itemdetails?itemName=ms-python.python) team | +| *Categories* | Core, Languages | | *Definition type* | Dockerfile | | *Published image* | mcr.microsoft.com/vscode/devcontainers/python | | *Available image variants* | 3, 3.6, 3.7, 3.8, 3.9 ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/python/tags/list)) | diff --git a/containers/r/README.md b/containers/r/README.md index 1bf83c3663..77b1171c35 100644 --- a/containers/r/README.md +++ b/containers/r/README.md @@ -1,4 +1,4 @@ -# R +# R (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | [kmehant](mailto:kmehant@gmail.com) | +| *Categories* | Community, Languages | | *Definition type* | Dockerfile | | *Works in Codespaces* | No | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/reasonml/README.md b/containers/reasonml/README.md index 1659131749..208576b3fd 100644 --- a/containers/reasonml/README.md +++ b/containers/reasonml/README.md @@ -1,4 +1,4 @@ -# ReasonML +# ReasonML (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | Diullei Gomes ([@diullei](https://github.com/diullei)) | +| *Categories* | Community, Languages | | *Definition type* | Dockerfile | | *Works in Codespaces* | No | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/ruby-rails/.devcontainer/devcontainer.json b/containers/ruby-rails/.devcontainer/devcontainer.json index 29756cb088..4226b98be7 100644 --- a/containers/ruby-rails/.devcontainer/devcontainer.json +++ b/containers/ruby-rails/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "name": "Ruby on Rails", + "name": "Ruby on Rails (Community)", "build": { "dockerfile": "Dockerfile", "args": { diff --git a/containers/ruby-rails/README.md b/containers/ruby-rails/README.md index 3c232e043f..28870768ca 100644 --- a/containers/ruby-rails/README.md +++ b/containers/ruby-rails/README.md @@ -1,4 +1,4 @@ -# Ruby on Rails +# Ruby on Rails (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | [Amblizer][la] | +| *Categories* | Community, Frameworks | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/ruby-sinatra/.devcontainer/devcontainer.json b/containers/ruby-sinatra/.devcontainer/devcontainer.json index 49651167c8..efa45de11d 100644 --- a/containers/ruby-sinatra/.devcontainer/devcontainer.json +++ b/containers/ruby-sinatra/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "name": "Ruby & Sinatra", + "name": "Ruby & Sinatra (Community)", "build": { "dockerfile": "Dockerfile", "args": { diff --git a/containers/ruby-sinatra/README.md b/containers/ruby-sinatra/README.md index 77518cc496..1f92e8a997 100644 --- a/containers/ruby-sinatra/README.md +++ b/containers/ruby-sinatra/README.md @@ -1,4 +1,4 @@ -# Ruby & Sinatra +# Ruby & Sinatra (Community) ## Summary @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | [Amblizer][la] | +| *Categories* | Community, Frameworks | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/ruby/README.md b/containers/ruby/README.md index 9a5118e14c..aad9282614 100644 --- a/containers/ruby/README.md +++ b/containers/ruby/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Core, Languages | | *Definition type* | Dockerfile | | *Published images* | mcr.microsoft.com/vscode/devcontainers/ruby | | *Available image variants* | 3, 3.0, 2, 2.7, 2.6, 2.5 ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/ruby/tags/list)) | diff --git a/containers/rust/README.md b/containers/rust/README.md index 0053fc9d1e..873e19e517 100644 --- a/containers/rust/README.md +++ b/containers/rust/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Core, Languages | | *Definition type* | Dockerfile | | *Published images* | mcr.microsoft.com/vscode/devcontainers/rust | | *Published image architecture(s)* | x86-64 | diff --git a/containers/sfdx-project/README.md b/containers/sfdx-project/README.md index 2f2c845ba3..b6326985fe 100644 --- a/containers/sfdx-project/README.md +++ b/containers/sfdx-project/README.md @@ -1,4 +1,4 @@ -# SFDX Project +# SFDX Project (Community) ## Summary @@ -6,7 +6,8 @@ Salesforce Extension for VS Code supports remote development and allows you to u | Metadata | Value | |----------|-------| -| *Contributors* | Salesforce Developer Experience Teams | +| *Contributors* | Salesforce Developer Experience Teams | +| *Categories* | Community, Services | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/swift/.devcontainer/devcontainer.json b/containers/swift/.devcontainer/devcontainer.json index 966778259a..8c42cd88d9 100644 --- a/containers/swift/.devcontainer/devcontainer.json +++ b/containers/swift/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "name": "Swift", + "name": "Swift (Community)", "build": { "dockerfile": "Dockerfile", "args": { diff --git a/containers/swift/README.md b/containers/swift/README.md index c6650c23f2..1db3f63ee4 100644 --- a/containers/swift/README.md +++ b/containers/swift/README.md @@ -1,4 +1,4 @@ -# Swift +# Swift (Community) ## Summary @@ -6,7 +6,8 @@ | Metadata | Value | |----------|-------| -| *Contributors* | The VS Code Team, [cloudnull](https://github.com/cloudnull) | +| *Contributors* | [cloudnull](https://github.com/cloudnull) | +| *Categories* | Community, Languages | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows | diff --git a/containers/typescript-node/README.md b/containers/typescript-node/README.md index a1775c683a..2367081fe6 100644 --- a/containers/typescript-node/README.md +++ b/containers/typescript-node/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Core, Languages | | *Definition type* | Dockerfile | | *Published image* | mcr.microsoft.com/vscode/devcontainers/typescript-node | | *Available image variants* | 10, 12, 14 (([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/typescript-node/tags/list)) | diff --git a/containers/ubuntu/README.md b/containers/ubuntu/README.md index 459193e422..b067ef30d5 100644 --- a/containers/ubuntu/README.md +++ b/containers/ubuntu/README.md @@ -7,6 +7,7 @@ | Metadata | Value | |----------|-------| | *Contributors* | The VS Code Team | +| *Categories* | Core, Other | | *Definition type* | Dockerfile | | *Published images* | mcr.microsoft.com/vscode/devcontainers/base:ubuntu | | *Available image variants* | bionic, focal ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/base/tags/list)) | diff --git a/containers/vue/README.md b/containers/vue/README.md index 979de12918..93ed52bf33 100644 --- a/containers/vue/README.md +++ b/containers/vue/README.md @@ -7,6 +7,7 @@ | Metadata | Value | | --------------------------- | -------------------------------------------- | | *Contributors* | [Aaryn Smith](https://gitlab.com/aarynsmith) | +| *Categories* | Community, Frameworks | | *Definition type* | Dockerfile | | *Works in Codespaces* | Yes | | *Container host OS support* | Linux, macOS, Windows |