An open API service indexing awesome lists of open source software.

https://github.com/sidecus/devcontainer-features

dev container features
https://github.com/sidecus/devcontainer-features

Last synced: 5 months ago
JSON representation

dev container features

Awesome Lists containing this project

README

          

# My devcontainer features

My devcontainer features using the [feature-starter](https://github.com/devcontainers/feature-starter) template.

## `magicmirror`

Automatically setup package manager mirrors, including ubuntu, pypi and apk etc.

```jsonc
{
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/sidecus/devcontainer-features/magicmirror:1": {
"ubuntu_mirror": "", // only applicable to Ubuntu based images
"apk_mirror": "", // only applicable to Alpine based images
"pypi_mirror": "https:///pypi/web/simple/",
"huggingface_mirror": "https://dummy-hf-mirror.com"
}
}
}
```