This repo contains custom dev container Features for VSCode dev containers and GitHub Codespaces created by EliiseS, hosted on GitHub Container Registry. This repository follows the dev container Feature distribution specification.
To provide feedback or report issues, please create an issue on this repo.
This repository contains a collection of features. View the full list of features. Each folder contains a readme.md with a description and usage of the feature.
"ubuntu:focal",
"ubuntu:jammy",
"debian:11",
"debian:10",
"mcr.microsoft.com/devcontainers/base:ubuntu",
"mcr.microsoft.com/devcontainers/base:debian",Example devcontainer.json with the usage of the bash-profile feature:
$ e "Hello world"
Hello worldFor contributing, see the CONTRIBUTING.MD.
{ "image": "mcr.microsoft.com/devcontainers/base:ubuntu", "features": { "ghcr.io/EliiseS/devcontainer-features/bash-profile:1": { "command": "alias e=echo" } } }