This repository contains a collection of community supported Dev Container Features that allow you to quickly and easily add more tooling, runtime, or library "Features" into your Development Container for you or your collaborators to use.
To reference a Feature from this repository, add the desired Features to your devcontainer.json
file and configure any additional options.
The example below installs the bosh
and credhub
cli Features as declared in the ./src
directory of this repository.
See the relevant Feature's README for supported options.
The :latest
version annotation is added implicitly if omitted. To pin to a specific package version (example), append it to the end of the Feature. Features follow semantic versioning conventions, so you can pin to a major version :1
, minor version :1.0
, or patch version :1.0.0
by specifying the appropriate label.
"features": {
"ghcr.io/nulldriver/devcontainer-features/bosh-cli:1.0.0": {
"version": "7.1"
}
}
Feature | Description |
---|---|
bosh-cli |
Installs BOSH CLI, an open source tool for release engineering, deployment, lifecycle management, and monitoring of distributed systems. |
builder |
Installs Builder: Static Site Generation Tool. |
cf-cli |
Installs Cloud Foundry CLI, the official command line client for Cloud Foundry. |
credhub-cli |
Installs CredHub CLI, a credential manager for managing passwords, certificates, certificate authorities, ssh keys, rsa keys and arbitrary values (strings and JSON blobs). |
fly-cli |
Installs the Concourse Fly CLI. |
gem |
Installs RubyGems using the gem cli. |
kf-cli |
Installs Kf CLI. Kf offers developers the Cloud Foundry experience while empowering operators to adopt declarative Kubernetes practice. |
shellspec-cli |
Installs the ShellSpec BDD unit testing framework CLI. |
This repository will accept improvement and bug fix contributions related to the current set of maintained Features.