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
- Host: GitHub
- URL: https://github.com/sidecus/devcontainer-features
- Owner: sidecus
- License: mit
- Created: 2024-07-15T13:01:01.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-25T14:26:48.000Z (almost 2 years ago)
- Last Synced: 2024-07-25T16:37:30.270Z (almost 2 years ago)
- Language: Shell
- Size: 37.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
}
}
```