Skip to content

EliiseS/devcontainer-features

Folders and files

NameName
Last commit message
Last commit date
Jan 13, 2023
Jan 11, 2023
Jan 13, 2023
Jan 13, 2023
Jan 6, 2023
Jan 6, 2023
Jan 6, 2023
Nov 10, 2022
Jan 11, 2023
Jan 13, 2023

Repository files navigation

Dev Container Features by EliiseS

Devcontainers Codespaces

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.

Usage

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.

⚠️ Officially only support debian and ubuntu based images as of now:

            "ubuntu:focal",
            "ubuntu:jammy",
            "debian:11",
            "debian:10",
            "mcr.microsoft.com/devcontainers/base:ubuntu",
            "mcr.microsoft.com/devcontainers/base:debian",

Example

Example devcontainer.json with the usage of the bash-profile feature:

{
    "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
    "features": {
        "ghcr.io/EliiseS/devcontainer-features/bash-profile:1": {
            "command": "alias e=echo"
        }
    }
}
$ e "Hello world"

Hello world

Contributing

For contributing, see the CONTRIBUTING.MD.