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

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

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"
}
}
}
```