Skip to content

coder/devcontainer-features

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6978717 · Apr 15, 2025

History

22 Commits
Apr 4, 2025
Apr 15, 2025
Apr 15, 2025
Apr 15, 2025
Apr 15, 2025
Apr 7, 2025
Apr 4, 2025
Apr 15, 2025
Apr 7, 2025

Repository files navigation

Dev Container Features Collection

This repository contains a collection of dev container Features that can be used to enhance your development environment. The features follow the dev container Feature distribution specification and are hosted for free on GitHub Container Registry.

Available Features

code-server

The code-server feature installs code-server, which allows you to run VS Code in the browser.

{
    "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
    "features": {
        "ghcr.io/coder/devcontainer-features/code-server:1": {
            "host": "127.0.0.1",
            "port": "8080",
            "args": "",
            "extensions": ""
        }
    }
}

Options

Option Type Default Description
host string 127.0.0.1 The address to bind to when starting code-server
port string 8080 The port to bind to when starting code-server
args string "" Additional arguments to pass to code-server
extensions string "" Comma-separated list of VS Code extensions to install

Contributing

For information about contributing to this repository, including how to publish features, please see CONTRIBUTING.md.