Socket
Socket
Sign inDemoInstall

@vscode/dev-container-cli

Package Overview
Dependencies
Maintainers
17
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vscode/dev-container-cli - npm Package Compare versions

Comparing version 0.202.3 to 0.202.5

3

dist/node_modules/vscode-dev-containers/container-features/features.json

@@ -384,2 +384,5 @@ {

"cpp",
"dotnet",
"dotnet-fsharp",
"dotnet-mssql",
"kubernetes-helm",

@@ -386,0 +389,0 @@ "kubernetes-helm-minikube",

2

dist/node_modules/vscode-dev-containers/containers-readmes/docker-from-docker-compose/README.md

@@ -56,3 +56,3 @@ # Docker from Docker Compose

&& apt-get update \
&& apt-get install -y docker-ce-cli \
&& apt-get install -y docker-ce-cli

@@ -59,0 +59,0 @@ # Install Docker Compose

@@ -121,9 +121,9 @@ # F# (.NET)

If you would like to install the Azure CLI update you can set the `INSTALL_AZURE_CLI` argument line in `.devcontainer/devcontainer.json`:
If you would like to install the Azure CLI, you can reference [a dev container feature](https://aka.ms/vscode-remote/containers/dev-container-features) by adding the following to `.devcontainer/devcontainer.json`:
```json
"args": {
"VARIANT": "3.1",
"NODE_VERSION": "14",
"INSTALL_AZURE_CLI": "true"
{
"features": {
"azure-cli": "latest"
}
}

@@ -130,0 +130,0 @@ ```

@@ -13,6 +13,6 @@ # C# (.NET) and MS SQL

| *Published image architecture(s)* | x86-64 |
| *Available image variants* | 2.1, 3.1, 5.0 |
| *Available image variants* | [See .NET definition](../dotnet). |
| *Works in Codespaces* | Yes |
| *Container host OS support* | Linux, macOS, Windows |
| *Container OS* | Ubuntu |
| *Container OS* | Ubuntu (.NET 3.1-6.0), Debian (.NET 6.0 default) |
| *Languages, platforms* | .NET, .NET Core, C#, Microsoft SQL |

@@ -100,9 +100,10 @@

If you would like to install the Azure CLI update you can set the `INSTALL_AZURE_CLI` argument line in `.devcontainer/docker-compose.yml`:
If you would like to install the Azure CLI, you can reference [a dev container feature](https://aka.ms/vscode-remote/containers/dev-container-features) by adding the following to `.devcontainer/devcontainer.json`:
```yaml
args:
VARIANT: "3.1"
NODE_VERSION: "14"
INSTALL_AZURE_CLI: "true"
```json
{
"features": {
"azure-cli": "latest"
}
}
```

@@ -109,0 +110,0 @@

@@ -12,8 +12,8 @@ # C# (.NET)

| *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)) |
| *Published images* | mcr.microsoft.com/vscode/devcontainers/dotnet |
| *Available image variants* | 3.1 / 3.1-focal, 5.0 / 5.0-focal, 6.0 /6.0-bullseye, 6.0-focal, 5.0-bullseye, 3.1-bullseye ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/dotnet/tags/list)) |
| *Published image architecture(s)* | x86-64 |
| *Works in Codespaces* | Yes |
| *Container host OS support* | Linux, macOS, Windows |
| *Container OS* | Ubuntu |
| *Container OS* | Ubuntu (`-focal`), Debian (`-bullseye`) |
| *Languages, platforms* | .NET, .NET Core, C# |

@@ -28,11 +28,14 @@

```json
// Or you can use 3.1-bullseye or 3.1-focal if you want to pin to an OS version
"args": { "VARIANT": "3.1" }
```
Note that .NET 6.0 has switched its default OS to Debian 12 / bullseye. We also offer a `6.0-focal` image if you would prefer to use Ubuntu 20.04 / Focal.
You can also directly reference pre-built versions of `.devcontainer/base.Dockerfile` by using the `image` property in `.devcontainer/devcontainer.json` or updating the `FROM` statement in your own `Dockerfile` to one of the following. An example `Dockerfile` is included in this repository.
- `mcr.microsoft.com/vscode/devcontainers/dotnet` (latest)
- `mcr.microsoft.com/vscode/devcontainers/dotnet:2.1` (or `dotnetcore:2.1`)
- `mcr.microsoft.com/vscode/devcontainers/dotnet:3.1` (or `dotnetcore:3.1`)
- `mcr.microsoft.com/vscode/devcontainers/dotnet:5.0`
- `mcr.microsoft.com/vscode/devcontainers/dotnet:3.1` (or `3.1-bullseye`, `3.1-focal` to pin to an OS version)
- `mcr.microsoft.com/vscode/devcontainers/dotnet:5.0` (or `5.0-bullseye`, `5.0-focal` to pin to an OS version)
- `mcr.microsoft.com/vscode/devcontainers/dotnet:6.0` (or `6.0-bullseye`, `6.0-focal` to pin to an OS version)

@@ -42,4 +45,4 @@ You can decide how often you want updates by referencing a [semantic version](https://semver.org/) of each image. For example:

- `mcr.microsoft.com/vscode/devcontainers/dotnet:0-3.1`
- `mcr.microsoft.com/vscode/devcontainers/dotnet:0.201-3.1`
- `mcr.microsoft.com/vscode/devcontainers/dotnet:0.201.6-3.1`
- `mcr.microsoft.com/vscode/devcontainers/dotnet:0.203-3.1`
- `mcr.microsoft.com/vscode/devcontainers/dotnet:0.203.0-3.1`

@@ -129,9 +132,9 @@ See [history](history) for information on the contents of each version and [here for a complete list of available tags](https://mcr.microsoft.com/v2/vscode/devcontainers/dotnet/tags/list).

If you would like to install the Azure CLI update you can set the `INSTALL_AZURE_CLI` argument line in `.devcontainer/devcontainer.json`:
If you would like to install the Azure CLI, you can reference [a dev container feature](https://aka.ms/vscode-remote/containers/dev-container-features) by adding the following to `.devcontainer/devcontainer.json`:
```jsonc
"args": {
"VARIANT": "3.1",
"NODE_VERSION": "14",
"INSTALL_AZURE_CLI": "true"
```json
{
"features": {
"azure-cli": "latest"
}
}

@@ -138,0 +141,0 @@ ```

@@ -30,3 +30,3 @@ # Python 3 & PostgreSQL

args:
# Update 'VARIANT' to pick a version of Python: 3, 3.9, 3.8, 3.7, 3.6
# Update 'VARIANT' to pick a version of Python: 3, 3.10, 3.9, 3.8, 3.7, 3.6
# Append -bullseye or -buster to pin to an OS version.

@@ -33,0 +33,0 @@ # Use -bullseye variants on local arm64/Apple Silicon.

@@ -13,3 +13,3 @@ # Python 3

| *Published image* | mcr.microsoft.com/vscode/devcontainers/python |
| *Available image variants* | 3 / 3-bullseye, 3.6 / 3.6-bullseye, 3.7 / 3.7-bullseye, 3.8 / 3.8-bullseye, 3.9 / 3.9-bullseye, 3-buster, 3.6-buster, 3.7-buster, 3.8-buster, 3.9-buster ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/python/tags/list)) |
| *Available image variants* | 3 / 3-bullseye, 3.6 / 3.6-bullseye, 3.7 / 3.7-bullseye, 3.8 / 3.8-bullseye, 3.9 / 3.9-bullseye, 3.10 / 3.10-bullseye, 3-buster, 3.6-buster, 3.7-buster, 3.8-buster, 3.9-buster, 3.10-buster ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/python/tags/list)) |
| *Published image architecture(s)* | x86-64, arm64/aarch64 for `bullseye` variants |

@@ -41,2 +41,3 @@ | *Works in Codespaces* | Yes |

- `mcr.microsoft.com/vscode/devcontainers/python:3.9` (or `3.9-bullseye`, `3.9-buster` to pin to an OS version)
- `mcr.microsoft.com/vscode/devcontainers/python:3.10` (or `3.10-bullseye`, `3.10-buster` to pin to an OS version)

@@ -43,0 +44,0 @@ You can decide how often you want updates by referencing a [semantic version](https://semver.org/) of each image. For example:

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/alpine
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/alpine
{

@@ -4,0 +4,0 @@ "name": "Alpine",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/azure-ansible
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/azure-ansible
{

@@ -4,0 +4,0 @@ "name": "Azure Ansible (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/azure-bicep
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/azure-bicep
{

@@ -4,0 +4,0 @@ "name": "Azure Bicep (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/azure-cli
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/azure-cli
{

@@ -4,0 +4,0 @@ "name": "Azure CLI",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/azure-functions-dotnetcore-2.1
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/azure-functions-dotnetcore-2.1
{

@@ -4,0 +4,0 @@ "name": "Azure Functions & C# - .NET Core 2.1",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/azure-functions-dotnetcore-3.1
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/azure-functions-dotnetcore-3.1
{

@@ -4,0 +4,0 @@ "name": "Azure Functions & C# - .NET Core 3.1",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/azure-functions-java-11
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/azure-functions-java-11
{

@@ -4,0 +4,0 @@ "name": "Azure Functions & Java 11",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/azure-functions-java-8
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/azure-functions-java-8
{

@@ -4,0 +4,0 @@ "name": "Azure Functions & Java 8",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/azure-functions-node
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/azure-functions-node
{

@@ -4,0 +4,0 @@ "name": "Azure Functions & Node.js",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/azure-functions-pwsh
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/azure-functions-pwsh
{

@@ -4,0 +4,0 @@ "name": "Azure Functions & PowerShell",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/azure-functions-python-3
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/azure-functions-python-3
{

@@ -4,0 +4,0 @@ "name": "Azure Functions & Python 3",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/azure-machine-learning-python-3
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/azure-machine-learning-python-3
{

@@ -4,0 +4,0 @@ "name": "Azure Machine Learning",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/azure-static-web-apps
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/azure-static-web-apps
{

@@ -4,0 +4,0 @@ "name": "Azure Static Web Apps",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/azure-terraform
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/azure-terraform
{

@@ -4,0 +4,0 @@ "name": "Azure Terraform (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/bash
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/bash
{

@@ -4,0 +4,0 @@ "name": "Bash (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/bazel
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/bazel
{

@@ -4,0 +4,0 @@ "name": "Bazel (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/chef-workstation
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/chef-workstation
{

@@ -4,0 +4,0 @@ "name": "Chef Workstation (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/codespaces-linux
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/codespaces-linux
{

@@ -4,0 +4,0 @@ "name": "GitHub Codespaces (Default)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/cpp
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/cpp
{

@@ -4,0 +4,0 @@ "name": "C++",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/dapr-dotnet
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/dapr-dotnet
{

@@ -4,0 +4,0 @@ "name": "Dapr with C# (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/dapr-javascript-node
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/dapr-javascript-node
{

@@ -4,0 +4,0 @@ "name": "Dapr with Node.js & JavaScript (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/dart
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/dart
{

@@ -4,0 +4,0 @@ "name": "Dart (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/debian
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/debian
{

@@ -4,0 +4,0 @@ "name": "Debian",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/deno
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/deno
{

@@ -4,0 +4,0 @@ "name": "Deno",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/docker-existing-docker-compose
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/docker-existing-docker-compose
// If you want to run as a non-root user in the container, see .devcontainer/docker-compose.yml.

@@ -4,0 +4,0 @@ {

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/docker-existing-dockerfile
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/docker-existing-dockerfile
{

@@ -4,0 +4,0 @@ "name": "Existing Dockerfile",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/docker-from-docker-compose
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/docker-from-docker-compose
{

@@ -4,0 +4,0 @@ "name": "Docker from Docker Compose",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/docker-from-docker
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/docker-from-docker
{

@@ -4,0 +4,0 @@ "name": "Docker from Docker",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/docker-in-docker
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/docker-in-docker
{

@@ -4,0 +4,0 @@ "name": "Docker in Docker",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/dotnet-fsharp
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/dotnet-fsharp
{

@@ -10,5 +10,3 @@ "name": "F# (.NET)",

// Options
"NODE_VERSION": "lts/*",
"INSTALL_AZURE_CLI": "false",
"UPGRADE_PACKAGES": "false"
"NODE_VERSION": "lts/*"
}

@@ -15,0 +13,0 @@ },

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/dotnet-mssql
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/dotnet-mssql
{

@@ -4,0 +4,0 @@ "name": "C# (.NET) and MS SQL",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/dotnet
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/dotnet
{

@@ -9,7 +9,7 @@ "name": "C# (.NET)",

"args": {
// Update 'VARIANT' to pick a .NET Core version: 2.1, 3.1, 5.0
"VARIANT": "5.0",
// Update 'VARIANT' to pick a .NET Core version: 3.1, 5.0, 6.0
// Append -bullseye or -focal to pin to an OS version.
"VARIANT": "5.0-bullseye",
// Options
"NODE_VERSION": "lts/*",
"INSTALL_AZURE_CLI": "false"
"NODE_VERSION": "lts/*"
}

@@ -16,0 +16,0 @@ },

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/elixir-phoenix-postgres
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/elixir-phoenix-postgres
{

@@ -4,0 +4,0 @@ "name": "Elixir, Phoenix, Node.js & PostgresSQL (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/elm
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/elm
{

@@ -4,0 +4,0 @@ "name": "Elm (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/go
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/go
{

@@ -4,0 +4,0 @@ "name": "Go",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/haskell
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/haskell
{

@@ -4,0 +4,0 @@ "name": "Haskell (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/hugo
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/hugo
{

@@ -4,0 +4,0 @@ "name": "Hugo (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/java-8
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/java-8
{

@@ -4,0 +4,0 @@ "name": "Java 8",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/java
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/java
{

@@ -4,0 +4,0 @@ "name": "Java",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/javascript-node-azurite
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/javascript-node-azurite
// Update the VARIANT arg in docker-compose.yml to pick a Node.js version

@@ -4,0 +4,0 @@ {

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/javascript-node-mongo
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/javascript-node-mongo
// Update the VARIANT arg in docker-compose.yml to pick a Node.js version

@@ -4,0 +4,0 @@ {

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/javascript-node-postgres
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/javascript-node-postgres
// Update the VARIANT arg in docker-compose.yml to pick a Node.js version

@@ -4,0 +4,0 @@ {

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/javascript-node
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/javascript-node
{

@@ -4,0 +4,0 @@ "name": "Node.js",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/jekyll
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/jekyll
{

@@ -4,0 +4,0 @@ "name": "Jekyll",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/julia
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/julia
// See https://github.com/julia-vscode/julia-devcontainer/blob/master/Dockerfile for image contents

@@ -4,0 +4,0 @@ {

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/jupyter-datascience-notebooks
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/jupyter-datascience-notebooks
{

@@ -4,0 +4,0 @@ "name": "Jupyter Data Science Notebooks (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/kubernetes-helm-minikube
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/kubernetes-helm-minikube
{

@@ -4,0 +4,0 @@ "name": "Kubernetes - Minikube-in-Docker",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/kubernetes-helm
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/kubernetes-helm
{

@@ -4,0 +4,0 @@ "name": "Kubernetes - Local Configuration",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/markdown
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/markdown
{

@@ -4,0 +4,0 @@ "name": "Markdown Editing",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/mit-scheme
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/mit-scheme
{

@@ -4,0 +4,0 @@ "name": "MIT-Scheme (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/perl
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/perl
{

@@ -4,0 +4,0 @@ "name": "Perl (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/php-mariadb
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/php-mariadb
// Update the VARIANT arg in docker-compose.yml to pick a PHP version

@@ -4,0 +4,0 @@ {

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/php
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/php
{

@@ -4,0 +4,0 @@ "name": "PHP",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/powershell
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/powershell
{

@@ -4,0 +4,0 @@ "name": "PowerShell",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/puppet
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/puppet
{

@@ -4,0 +4,0 @@ "name": "Puppet Development Kit (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/python-3-anaconda
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/python-3-anaconda
{

@@ -4,0 +4,0 @@ "name": "Anaconda (Python 3)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/python-3-device-simulator-express
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/python-3-device-simulator-express
{

@@ -4,0 +4,0 @@ "name": "Python 3 & Device Simulator Express (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/python-3-miniconda
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/python-3-miniconda
{

@@ -4,0 +4,0 @@ "name": "Miniconda (Python 3)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/python-3-postgres
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/python-3-postgres
// Update the VARIANT arg in docker-compose.yml to pick a Python version

@@ -4,0 +4,0 @@ {

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/python-3-pypy
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/python-3-pypy
{

@@ -4,0 +4,0 @@ "name": "PyPy (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/python-3
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/python-3
{

@@ -10,6 +10,6 @@ "name": "Python 3",

"args": {
// Update 'VARIANT' to pick a Python version: 3, 3.9, 3.8, 3.7, 3.6.
// Update 'VARIANT' to pick a Python version: 3, 3.10, 3.9, 3.8, 3.7, 3.6
// Append -bullseye or -buster to pin to an OS version.
// Use -bullseye variants on local on arm64/Apple Silicon.
"VARIANT": "3-bullseye",
"VARIANT": "3.10-bullseye",
// Options

@@ -16,0 +16,0 @@ "NODE_VERSION": "lts/*"

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/r
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/r
{

@@ -4,0 +4,0 @@ "name": "R (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/reasonml
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/reasonml
{

@@ -4,0 +4,0 @@ "name": "ReasonML (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/ruby-rails-postgres
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/ruby-rails-postgres
// Update the VARIANT arg in docker-compose.yml to pick a Ruby version

@@ -4,0 +4,0 @@ {

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/ruby-rails
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/ruby-rails
{

@@ -4,0 +4,0 @@ "name": "Ruby on Rails (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/ruby-sinatra
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/ruby-sinatra
{

@@ -4,0 +4,0 @@ "name": "Ruby & Sinatra (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/ruby
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/ruby
{

@@ -4,0 +4,0 @@ "name": "Ruby",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/rust
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/rust
{

@@ -4,0 +4,0 @@ "name": "Rust",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/sfdx-project
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/sfdx-project
{

@@ -4,0 +4,0 @@ "name": "Salesforce Project (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/swift
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/swift
{

@@ -4,0 +4,0 @@ "name": "Swift (Community)",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/typescript-node
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/typescript-node
{

@@ -4,0 +4,0 @@ "name": "Node.js & TypeScript",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/ubuntu
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/ubuntu
{

@@ -4,0 +4,0 @@ "name": "Ubuntu",

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/vue
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/vue
{

@@ -4,0 +4,0 @@ "name": "Vue (Community)",

{
"variants": ["5.0", "3.1", "2.1"],
"definitionVersion": "0.201.10",
"variants": ["6.0-bullseye-slim", "6.0-focal", "5.0-bullseye-slim", "5.0-focal", "3.1-bullseye", "3.1-focal"],
"definitionVersion": "0.201.11",
"build": {
"latest": true,
"latest": "5.0-focal",
"rootDistro": "debian",
"tags": [
"dotnet:${VERSION}-${VARIANT}",
"dotnetcore:${VERSION}-${VARIANT}"
]
"dotnet:${VERSION}-${VARIANT}"
],
"variantTags": {
"6.0-bullseye-slim": [
"dotnet:${VERSION}-6.0",
"dotnet:${VERSION}-6.0-bullseye"
],
"5.0-focal": [
"dotnet:${VERSION}-5.0",
"dotnetcore:${VERSION}-5.0"
],
"5.0-bullseye-slim": [
"dotnet:${VERSION}-5.0-bullseye",
"dotnetcore:${VERSION}-5.0-bullseye"
],
"3.1-focal": [
"dotnet:${VERSION}-3.1",
"dotnetcore:${VERSION}-3.1"
],
"3.1-bullseye": [
"dotnetcore:${VERSION}-3.1-bullseye"
]
}
},
"dependencies": {
"image": "mcr.microsoft.com/dotnet/sdk:${VARIANT}-focal",
"image": "mcr.microsoft.com/dotnet/sdk:${VARIANT}",
"imageLink": "https://hub.docker.com/_/microsoft-dotnet-sdk",

@@ -15,0 +35,0 @@ "apt": [{

{
"variants": ["2.7-bullseye", "2.7-buster"],
"definitionVersion": "0.1.0",
"definitionVersion": "0.1.2",
"build": {

@@ -13,6 +13,9 @@ "latest": "2.7-bullseye",

"tags": [
"jekyll:${VERSION}"
"jekyll:${VERSION}-${VARIANT}"
],
"variantTags": {
"2.7-bullseye": [ "jekyll:${VERSION}-bullseye" ],
"2.7-bullseye": [
"jekyll:${VERSION}",
"jekyll:${VERSION}-bullseye"
],
"2.7-buster": [ "jekyll:${VERSION}-buster" ]

@@ -19,0 +22,0 @@ }

{
"variants": ["3.9-bullseye", "3.8-bullseye", "3.7-bullseye", "3.6-bullseye", "3.6-buster", "3.9-buster", "3.8-buster", "3.7-buster", "3.6-buster"],
"definitionVersion": "0.202.1",
"variants": ["3.10-bullseye", "3.9-bullseye", "3.8-bullseye", "3.7-bullseye", "3.6-bullseye", "3.10-buster", "3.9-buster", "3.8-buster", "3.7-buster", "3.6-buster"],
"definitionVersion": "0.203.0",
"build": {
"latest": "3.9-bullseye",
"latest": "3.10-bullseye",
"rootDistro": "debian",
"architectures": {
"3.10-bullseye": ["linux/amd64", "linux/arm64"],
"3.9-bullseye": ["linux/amd64", "linux/arm64"],

@@ -12,2 +13,3 @@ "3.8-bullseye": ["linux/amd64", "linux/arm64"],

"3.6-bullseye": ["linux/amd64", "linux/arm64"],
"3.10-buster": ["linux/amd64"],
"3.9-buster": ["linux/amd64"],

@@ -22,12 +24,13 @@ "3.8-buster": ["linux/amd64"],

"variantTags": {
"3.9-bullseye": [
"python:${VERSION}-3.9",
"3.10-bullseye": [
"python:${VERSION}-3.10",
"python:${VERSION}-3",
"python:${VERSION}-3-bullseye",
"python:${VERSION}-bullseye"
],
],
"3.9-bullseye": [ "python:${VERSION}-3.9" ],
"3.8-bullseye": [ "python:${VERSION}-3.8" ],
"3.7-bullseye": [ "python:${VERSION}-3.7" ],
"3.6-bullseye": [ "python:${VERSION}-3.6" ],
"3.9-buster": [
"3.10-buster": [
"python:${VERSION}-3-buster",

@@ -34,0 +37,0 @@ "python:${VERSION}-buster"

{
"name": "vscode-dev-containers",
"version": "0.202.3",
"version": "0.202.5",
"description": "VS Code Dev Containers: Definitions and Templates",

@@ -5,0 +5,0 @@ "repository": {

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/repository-containers/images/github.com/microsoft/vscode
// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/repository-containers/images/github.com/microsoft/vscode
{

@@ -4,0 +4,0 @@ "name": "Code - OSS",

{
"name": "@vscode/dev-container-cli",
"version": "0.202.3",
"version": "0.202.5",
"description": "Command Line Interface (CLI) for VS Code Dev Containers",

@@ -5,0 +5,0 @@ "bin": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc