Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 769 Bytes

README.md

File metadata and controls

38 lines (30 loc) · 769 Bytes

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
{
    "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
    "features": {
        "ghcr.io/FuelLabs/devcontainer-features/fuelup:1": {}
    }
}

is equivalent to:

{
    "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
    "features": {
        "ghcr.io/FuelLabs/devcontainer-features/fuelup:1": {
            "toolchain": "latest"
        }
    }
}