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.205.2 to 0.206.0

34

dist/node_modules/vscode-dev-containers/containers-readmes/bazel/README.md

@@ -7,29 +7,29 @@ # Bazel (Community)

| Metadata | Value |
|----------|-------|
| *Contributors* | William Phetsinorath <deva.shikanime@protonmail.com> |
| *Categories* | Community, Other |
| *Definition type* | Dockerfile |
| *Supported architecture(s)* | x86-64 |
| *Works in Codespaces* | Yes |
| *Container host OS support* | Linux, macOS, Windows |
| *Container OS* | Debian |
| *Languages, platforms* | Any |
| Metadata | Value |
| --------------------------- | ---------------------------------------------------- |
| *Contributors* | William Phetsinorath <deva.shikanime@protonmail.com> |
| *Categories* | Community, Other |
| *Definition type* | Dockerfile |
| *Supported architecture(s)* | x86-64 |
| *Works in Codespaces* | Yes |
| *Container host OS support* | Linux, macOS, Windows |
| *Container OS* | Debian |
| *Languages, platforms* | Any |
## Using this definition
While this definition works unmodified, you can set the Bazel version by updating the `BAZEL_VERSION` argument in `devcontainer.json`.
While this definition works unmodified, you can set the Bazelisk version by updating the `BAZELISK_VERSION` argument in `devcontainer.json`.
```json
"args": {
"BAZEL_VERSION": "3.4.1"
"BAZELISK_VERSION": "v1.10.1"
}
```
Optionally, you can validate the SHA256 checksum for `bazel-installer.sh` by adding it to the `BAZEL_DOWNLOAD_SHA` argument:
Optionally, you can validate the SHA256 checksum for `bazelisk` executable by adding it to the `BAZELISK_DOWNLOAD_SHA` argument:
```json
"args": {
"BAZEL_VERSION": "3.4.1",
"BAZEL_DOWNLOAD_SHA": "9808adad931ac652e8ff5022a74507c532250c2091d21d6aebc7064573669cc5"
"BAZELISK_VERSION": "v1.10.1",
"BAZELISK_DOWNLOAD_SHA": "4cb534c52cdd47a6223d4596d530e7c9c785438ab3b0a49ff347e991c210b2cd"
}

@@ -44,3 +44,3 @@ ```

3. Press <kbd>F1</kbd> select and **Add Development Container Configuration Files...** command for **Remote-Containers** or **Codespaces**.
3. Press <kbd>F1</kbd> select and **Add Development Container Configuration Files...** command for **Remote-Containers** or **Codespaces**.

@@ -61,3 +61,3 @@ > **Note:** If needed, you can drag-and-drop the `.devcontainer` folder from this sub-folder in a locally cloned copy of this repository into the VS Code file explorer instead of using the command.

4. Select this folder from the cloned repository.
5. Press <kbd>ctrl</kbd>+<kbd>shift</kbd>+<kbd>\`</kbd> and type the following command to verify installation: `bazel run //test-project:hello-world`
5. Press <kbd>ctrl</kbd>+<kbd>shift</kbd>+<kbd>\`</kbd> and type the following command to verify installation: `bazelisk run //test-project:hello-world`
6. You should see "Hello remote world!" in the Debug Console after the program executes.

@@ -64,0 +64,0 @@

@@ -20,23 +20,2 @@ # F# (.NET)

While this definition should work unmodified, you can select the version of .NET / .NET Core the container uses by updating the `VARIANT` arg in the included `devcontainer.json` (and rebuilding if you've already created the container).
```json
"args": { "VARIANT": "3.1" }
```
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`
Version specific tags tied to [releases in this repository](https://github.com/microsoft/vscode-dev-containers/releases) are also available.
- `mcr.microsoft.com/vscode/devcontainers/dotnet:0-3.1`
- `mcr.microsoft.com/vscode/devcontainers/dotnet:0.149-3.1`
- `mcr.microsoft.com/vscode/devcontainers/dotnet:0.149.0-3.1`
Alternatively, you can use the [contents of this `base.Dockerfile`](../dotnetcore/..devcontainer/base.Dockerfile) to fully customize your container's contents or to build it for a container host architecture not supported by the image.
### Debug Configuration

@@ -52,15 +31,4 @@

### Using the forwardPorts property
### Enabling HTTPS in ASP.NET using your own dev certificate
By default, ASP.NET Core only listens to localhost inside the container. As a result, we recommend using the `forwardPorts` property in `.devcontainer/devcontainer.json` (available in v0.98.0+) to make these ports available locally.
```json
"forwardPorts": [5000, 5001]
```
The `appPort` property [publishes](https://docs.docker.com/config/containers/container-networking/#published-ports) rather than forwards the port, so applications need to listen to `*` or `0.0.0.0` for the application to be accessible externally. This conflicts with ASP.NET Core's defaults, but fortunately the `forwardPorts` property does not have this limitation.
If you've already opened your folder in a container, rebuild the container using the **Remote-Containers: Rebuild Container** command from the Command Palette (<kbd>F1</kbd>) so the settings take effect.
### Enabling HTTPS in ASP.NET Core
To enable HTTPS in ASP.NET, you can mount an exported copy of your local dev certificate.

@@ -67,0 +35,0 @@

@@ -43,4 +43,4 @@ # C# (.NET)

- `mcr.microsoft.com/vscode/devcontainers/dotnet:0-3.1`
- `mcr.microsoft.com/vscode/devcontainers/dotnet:0.203-3.1`
- `mcr.microsoft.com/vscode/devcontainers/dotnet:0.203.0-3.1`
- `mcr.microsoft.com/vscode/devcontainers/dotnet:0.202-3.1`
- `mcr.microsoft.com/vscode/devcontainers/dotnet:0.202.0-3.1`

@@ -59,16 +59,4 @@ 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).

### Using the forwardPorts property
### Enabling HTTPS in ASP.NET using your own dev certificate
By default, ASP.NET only listens to localhost inside the container. As a result, we recommend using the `forwardPorts` property in `.devcontainer/devcontainer.json` (available in v0.98.0+) to make these ports available locally.
```json
"forwardPorts": [5000, 5001]
```
The `appPort` property [publishes](https://docs.docker.com/config/containers/container-networking/#published-ports) rather than forwards the port, so applications need to listen to `*` or `0.0.0.0` for the application to be accessible externally. This conflicts with ASP.NET's defaults, but fortunately the `forwardPorts` property does not have this limitation.
If you've already opened your folder in a container, rebuild the container using the **Remote-Containers: Rebuild Container** command from the Command Palette (<kbd>F1</kbd>) so the settings take effect.
### Enabling HTTPS in ASP.NET
To enable HTTPS in ASP.NET, you can mount an exported copy of your local dev certificate.

@@ -75,0 +63,0 @@

@@ -50,3 +50,3 @@ # Node.js & TypeScript

Beyond TypeScript, Node.js, and `git`, this image / `Dockerfile` includes `eslint`, `zsh`, [Oh My Zsh!](https://ohmyz.sh/), a non-root `node` user with `sudo` access, and a set of common dependencies for development. Since `tslint` is [now fully depreicated](https://github.com/palantir/tslint/issues/4534), the definition includes `tslint-to-eslint-config` globally to help you migrate.
Beyond TypeScript, Node.js, and `git`, this image / `Dockerfile` includes `eslint`, `zsh`, [Oh My Zsh!](https://ohmyz.sh/), a non-root `node` user with `sudo` access, and a set of common dependencies for development. Since `tslint` is [now fully deprecated](https://github.com/palantir/tslint/issues/4534), the definition includes `tslint-to-eslint-config` globally to help you migrate.

@@ -53,0 +53,0 @@ Note that, while `eslint`and `typescript` are installed globally for convenance, [as of ESLint 6](https://eslint.org/docs/user-guide/migrating-to-6.0.0#-plugins-and-shareable-configs-are-no-longer-affected-by-eslints-location), you will need to install the following packages locally to lint TypeScript code: `@typescript-eslint/eslint-plugin`, `@typescript-eslint/parser`, `eslint`, `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.205.2/containers/alpine
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/azure-ansible
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/azure-bicep
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/azure-cli
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/azure-functions-dotnetcore-2.1
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/azure-functions-dotnetcore-3.1
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/azure-functions-java-11
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/azure-functions-java-8
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/azure-functions-node
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/azure-functions-pwsh
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/azure-functions-python-3
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/azure-machine-learning-python-3
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/azure-static-web-apps
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/azure-terraform
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/bash
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/bazel
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/containers/bazel
{

@@ -8,10 +8,8 @@ "name": "Bazel (Community)",

"args": {
"BAZEL_VERSION": "3.4.1",
"BAZEL_DOWNLOAD_SHA": "9808adad931ac652e8ff5022a74507c532250c2091d21d6aebc7064573669cc5"
"BAZELISK_VERSION": "v1.10.1",
"BAZELISK_DOWNLOAD_SHA": "4cb534c52cdd47a6223d4596d530e7c9c785438ab3b0a49ff347e991c210b2cd"
}
},
// Set *default* container specific settings.json values on container create.
"settings": {},
// Add the IDs of extensions you want installed when the container is created.

@@ -21,14 +19,10 @@ "extensions": [

],
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a",
// Uncomment when using a ptrace-based debugger like C++, Go, and Rust
// "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ],
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode"
}
// 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.205.2/containers/chef-workstation
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/codespaces-linux
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/cpp
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/dapr-dotnet
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/dapr-javascript-node
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/dart
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/debian
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/deno
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/docker-existing-docker-compose
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/docker-existing-dockerfile
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/docker-from-docker-compose
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/docker-from-docker
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/docker-in-docker
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/dotnet-fsharp
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/containers/dotnet-fsharp
{

@@ -4,0 +4,0 @@ "name": "F# (.NET)",

// 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.205.2/containers/dotnet-mssql
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/dotnet
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/containers/dotnet
{

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

// 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.205.2/containers/elixir-phoenix-postgres
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/elixir
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/containers/elixir
{

@@ -4,0 +4,0 @@ "name": "Elixir (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.205.2/containers/elm
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/go
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/haskell
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/hugo
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/java-8
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/java
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/javascript-node-azurite
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/javascript-node-mongo
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/javascript-node-postgres
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/javascript-node
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/jekyll
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/julia
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/jupyter-datascience-notebooks
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/kubernetes-helm-minikube
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/kubernetes-helm
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/markdown
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/mit-scheme
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/perl
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/php-mariadb
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/php
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/powershell
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/puppet
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/python-3-anaconda
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/python-3-device-simulator-express
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/python-3-miniconda
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/python-3-postgres
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/python-3-pypy
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/python-3
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/containers/python-3
{

@@ -4,0 +4,0 @@ "name": "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.205.2/containers/r
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/reasonml
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/ruby-rails-postgres
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/ruby-rails
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/ruby-sinatra
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/ruby
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/rust
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/sfdx-project
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/swift
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/typescript-node
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/ubuntu
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/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.205.2/containers/vue
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/containers/vue
{

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

{
"name": "vscode-dev-containers",
"version": "0.205.2",
"version": "0.206.0",
"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.205.2/repository-containers/images/github.com/microsoft/vscode
// https://github.com/microsoft/vscode-dev-containers/tree/v0.206.0/repository-containers/images/github.com/microsoft/vscode
{

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

{
"name": "@vscode/dev-container-cli",
"version": "0.205.2",
"version": "0.206.0",
"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 too big to display

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