GitHub

Repository with features to use in devcontainers:

Usage

To use the features from this repository, add the desired features to devcontainer.json. To use the features from this repository, add the ones you need to devcontainer.json.

This sample installs Terraform and Vault into a devcontainer using hashicorp-tools feature.

Repository and Features Structure

Based on the repository devcontainers/features, this repository has a src folder. Each feature has its own subfolder, with at least a devcontainer-feature.json and an installation script install.sh.

├── src
│   ├── hello
│   │   ├── devcontainer-feature.json
│   │   └── install.sh
│   ├── color
│   │   ├── devcontainer-feature.json
│   │   └── install.sh
|   ├── ...
│   │   ├── devcontainer-feature.json
│   │   └── install.sh
...

Read the original on github.com ↗