Skip to content

Latest commit

Β 

History

History
38 lines (29 loc) Β· 728 Bytes

README.md

File metadata and controls

38 lines (29 loc) Β· 728 Bytes

direnv Dev Container Feature

πŸ“ Installs direnv and sets up hooks

Usage

// devcontainer.json
{
  "features": {
    "ghcr.io/devcontainers-community/features/direnv": {}
  }
}

❓ Don't know what this ☝ means? Check out this VS Code blog post.

Options

You can set version to one of latest, system, or N.N.N to pin a specific version:

// devcontainer.json
{
  "features": {
    "ghcr.io/devcontainers-community/features/direnv": {
      "version": "1.0.0"
    }
  }
}