https://github.com/fuellabs/devcontainer-features
Features for Github Dev Containers for the Fuel ecosystem
https://github.com/fuellabs/devcontainer-features
Last synced: 8 months ago
JSON representation
Features for Github Dev Containers for the Fuel ecosystem
- Host: GitHub
- URL: https://github.com/fuellabs/devcontainer-features
- Owner: FuelLabs
- License: mit
- Created: 2023-03-13T22:26:07.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-09T12:45:02.000Z (over 2 years ago)
- Last Synced: 2025-05-21T18:34:17.153Z (about 1 year ago)
- Language: Shell
- Size: 43.9 KB
- Stars: 4
- Watchers: 18
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fuel Labs Dev Container Features
## Contents
This repository contains a _collection_ of one Feature - `fuelup`.
### `fuelup`
Running `fuelup` inside the built container will install `fuelup` and the specified version of the Fuel toolchain, defaulting to `latest` if none is specified. The options for toolchains are:
- latest
- beta-1
- beta-2
- beta-3
- beta-4
- nightly
```jsonc
{
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/FuelLabs/devcontainer-features/fuelup:1": {}
}
}
```
is equivalent to:
```jsonc
{
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/FuelLabs/devcontainer-features/fuelup:1": {
"toolchain": "latest"
}
}
}
```