diff --git a/README.md b/README.md index c27d7b4b..6b384de8 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 12c1c823..07783223 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 acd95fc4..988e2ac1 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.]_ +*[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] | +| 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 e67969f1..feef6d25 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 3fdadeb8..8a96bae1 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 f2e6786f..ff5724fa 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 7a7df382..4e9269d5 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 2817dcaf..222d51dd 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 99339656..31ee8d20 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 b17d721a..0318e3b4 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 ef935737..2ad3e7d4 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 7d792b5f..ece9b2fe 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 5099451c..b7d42f55 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 5ce72fd2..0c87e169 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 81ddc12a..2d2e55b6 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 7f6b9c1b..a495c577 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 853382d7..a38cf586 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 0aafa90b..16ac1106 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 01fecd80..45279e11 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 7c262601..9a4db23a 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 5d1a864c..83f1b50e 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 c9a63608..cfc3ae43 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 6de5f863..0dbf325c 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 45fdadac..50a8f7b3 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 a730ec74..cd1b7ab9 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 e794d7a9..95847645 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 5a017892..fcedeb40 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 78dcc71c..365c6346 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 d5ef59a9..a3b585b6 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 68329ac2..7ed68259 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 266e5476..beca8589 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 26a8454f..7b4d9c78 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 e28c2766..9186ea06 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 cbd6f808..44658aa0 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 a1cd39c2..5ad23380 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 f1b75000..34e6d578 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 d4f884cf..e178864d 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 a69c0f63..ccf92a2d 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 6d13930b..b7ac8527 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 46a99cfd..8200c4e1 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 aac62615..76ed8b03 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 06fe7e48..7f575ffc 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 2caa1eb4..03d71adc 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 bf9d58dc..7684773b 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 080e7844..c394381a 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 1dbd63c0..2a11e62c 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 57bbf274..9970ba9e 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 520674e4..55bef46a 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 b4cf892c..b57b6ef1 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 5e2b3f47..f8481514 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 adf7900e..8ff36695 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 fa87f319..72ca6c6c 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 b25723ae..38d5f452 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 48d22a4e..f1262745 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 30cbadd9..8a20b29e 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 e0957685..35bae6eb 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 f12a3978..42f90690 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 925771a1..3b8fa1fa 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 373d160b..80bbba52 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 4b950edd..be7b569b 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 f1de7499..a59c1caa 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 b6eb0645..f277f1de 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 3603e6ce..3a74de9b 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 dfec2dec..a5ebc8c8 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 3c252ee1..d6e0279d 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 edeada3e..2accd30a 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 53298230..ff5091a8 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 f44fa79a..40f837c7 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 1bf83c36..77b1171c 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 16591317..208576b3 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 29756cb0..4226b98b 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 3c232e04..28870768 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 49651167..efa45de1 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 77518cc4..1f92e8a9 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 9a5118e1..aad92826 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 0053fc9d..873e19e5 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 2f2c845b..b6326985 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 96677825..8c42cd88 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 c6650c23..1db3f63e 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 a1775c68..2367081f 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 459193e4..b067ef30 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 979de129..93ed52bf 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 |