https://github.com/oinopion/devcontainer-features
Collection of Dev Container Features that I didn't find anywhere else
https://github.com/oinopion/devcontainer-features
devcontainer-features devcontainers
Last synced: 11 days ago
JSON representation
Collection of Dev Container Features that I didn't find anywhere else
- Host: GitHub
- URL: https://github.com/oinopion/devcontainer-features
- Owner: oinopion
- License: mit
- Created: 2024-06-16T17:04:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-15T23:09:38.000Z (over 1 year ago)
- Last Synced: 2025-10-06T19:45:04.714Z (4 months ago)
- Topics: devcontainer-features, devcontainers
- Language: Shell
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dev Container Features
A collection of Development Containers Features.
## Features
Currently there's only one feature here: `mise`.
### `mise`
[Mise](https://mise.jdx.dev/) is a polyglot tool version manager. It replaces tools like asdf, nvm, pyenv, rbenv, etc.
```jsonc
{
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/oinopion/devcontainer-features/mise:0": {}
}
}
```
```bash
$ mise use node@lts
mise node@20.15.0 ✓ installed
$ node --version
v20.15.0
```
## Repo and it's structure
This repo has been generated from the [feature-starter](https://github.com/devcontainers/feature-starter) template.