This commit is contained in:
Chuck Lantz 2021-02-09 14:14:20 -08:00 коммит произвёл GitHub
Родитель 6735f08d1f
Коммит a9ab2151ba
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
82 изменённых файлов: 149 добавлений и 83 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -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",

Просмотреть файл

@ -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

Просмотреть файл

@ -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": {

Просмотреть файл

@ -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

Просмотреть файл

@ -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",

Просмотреть файл

@ -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).
Licensed under the MIT License. See [LICENSE](https://github.com/Microsoft/vscode-dev-containers/blob/master/LICENSE).

Просмотреть файл

@ -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)

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -1,5 +1,5 @@
{
"name": "Azure Functions & C# (.NET Core 2.1)",
"name": "Azure Functions & C# - .NET Core 2.1",
"dockerFile": "Dockerfile",
"forwardPorts": [ 7071 ],

Просмотреть файл

@ -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 |

Просмотреть файл

@ -1,5 +1,5 @@
{
"name": "Azure Functions & C# (.NET Core 3.1)",
"name": "Azure Functions & C# - .NET Core 3.1",
"dockerFile": "Dockerfile",
"forwardPorts": [ 7071 ],

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -1,4 +1,4 @@
# Bazel
# Bazel (Community)
## Summary
@ -7,6 +7,7 @@
| Metadata | Value |
|----------|-------|
| *Contributors* | William Phetsinorath <deva.shikanime@protonmail.com> |
| *Categories* | Community, Other |
| *Definition type* | Dockerfile |
| *Works in Codespaces* | Yes |
| *Container host OS support* | Linux, macOS, Windows |

Просмотреть файл

@ -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<br />mcr.microsoft.com/vscode/devcontainers/universal:0-linux |
| *Published image architecture(s)* | x86-64 |

Просмотреть файл

@ -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<br />mcr.microsoft.com/vscode/devcontainers/universal:focal |
| *Published image architecture(s)* | x86-64 |

Просмотреть файл

@ -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)) |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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)) |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 <br/> 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)) |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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)) |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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)) |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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",

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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)) |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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",

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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)) |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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)) |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -1,5 +1,5 @@
{
"name": "Ruby on Rails",
"name": "Ruby on Rails (Community)",
"build": {
"dockerfile": "Dockerfile",
"args": {

Просмотреть файл

@ -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 |

Просмотреть файл

@ -1,5 +1,5 @@
{
"name": "Ruby & Sinatra",
"name": "Ruby & Sinatra (Community)",
"build": {
"dockerfile": "Dockerfile",
"args": {

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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)) |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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 |

Просмотреть файл

@ -1,5 +1,5 @@
{
"name": "Swift",
"name": "Swift (Community)",
"build": {
"dockerfile": "Dockerfile",
"args": {

Просмотреть файл

@ -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 |

Просмотреть файл

@ -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)) |

Просмотреть файл

@ -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)) |

Просмотреть файл

@ -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 |