Skip to content

nulldriver/devcontainer-features

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Development Container Features

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.

Usage

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.

{
    "name": "my-project-devcontainer",
    "image": "mcr.microsoft.com/devcontainers/base:ubuntu", // Any generic, debian-based image.
    "features": {
        "ghcr.io/nulldriver/devcontainer-features/bosh-cli:1": {
            "version": "7.1"
        },
        "ghcr.io/nulldriver/devcontainer-features/credhub-cli:1": {
            "version": "2.9"
        }
    }
}

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"
    }
}

Supported Features

Feature Description
bosh-cli Installs BOSH CLI, an open source tool for release engineering, deployment, lifecycle management, and monitoring of distributed systems.
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.

Contributing

This repository will accept improvement and bug fix contributions related to the current set of maintained Features.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

 
 
 

Languages