NOTE: Most of the contents of this repository have been migrated to the new devcontainers GitHub org (https://github.com/devcontainers). See https://github.com/devcontainers/template-starter and https://github.com/devcontainers/feature-starter for information on creating your own!
Перейти к файлу
Chuck Lantz fe1ad9f009
Trigger troubleshooting
2021-01-04 15:16:24 -08:00
.github Update troubleshoot.yml 2020-05-01 16:16:23 -07:00
.vscode Merge branch 'master' of https://github.com/microsoft/vscode-dev-containers into clantz/patch-util-improvements 2020-04-02 10:12:38 -07:00
build Update README.md 2020-04-02 14:51:29 -07:00
container-templates Remove duplicate "noninteractive" statements 2020-03-23 16:53:47 -07:00
containers README corrections 2020-04-03 07:23:41 -07:00
repository-containers Change appPort to forwardPort for the next release. 2020-01-27 16:22:27 -08:00
script-library Mention test container 2020-03-31 13:34:37 -07:00
.editorconfig Fix LF 2019-06-13 20:59:45 +00:00
.gitattributes Fix typo 2019-09-05 12:15:41 -04:00
.gitignore Move "latest" F# to 2.2 2019-10-04 20:31:42 +00:00
CONTRIBUTING.md Fix typos in CONTRIBUTING.md 2020-01-18 10:50:22 +01:00
LICENSE Initial commit 2018-11-05 04:52:41 -08:00
README.md Trigger troubleshooting 2021-01-04 15:16:24 -08:00
azure-pipelines.yml Enable CG ingestion 2020-01-16 14:51:10 -08:00
cgmanifest.json Automated update 2020-04-02 17:18:54 +00:00
package.json 0.110.0 2020-04-02 19:21:36 +00:00
yarn.lock Update lock files to deal with minimist vulnerability 2020-03-19 07:24:27 -07:00

README.md

VS Code Remote Development Container Definitions

Visual Studio Code logo Visual Studio Code Remote Development
Open any folder in a container, on a remote machine, or in WSL and take advantage of VS Code's full feature set. Learn more!
Download now!

A development container is a running Docker container with a well-defined tool/runtime stack and its prerequisites. The Remote - Containers extension in the Remote Development extension pack allows you to open any folder mounted into or inside a dev container and take advantage of VS Code's full development feature set.

This repository contains a set of dev container definitions to help get you up and running with a containerized environment. The definitions describe the appropriate container image, runtime arguments for starting the container, and VS Code extensions that should be installed. Each provides a container configuration file (devcontainer.json) and other needed files that you can drop into any existing folder as a starting point for containerizing your project. (The vscode-remote-try-* repositories may also be of interest if you are looking for complete sample projects.)

Using a definition

To add a dev container definition in your project, you can either:

  • Add it using VS Code:

    1. If this is your first time creating a dev container, follow the getting started steps to configure your machine.
    2. Start VS Code and open your project folder.
    3. Press F1 and select either the Remote-Containers: Add Development Container Configuration Files... or Remote-Containers: Reopen Folder in Container commands.
    4. Follow the directions and pick one of the existing development container definitions in this repository from the list. You may need to choose the From a predefined container configuration definition... option if your project has an existing Dockerfile or Docker Compose file.
  • Or manually copy the contents of one of the folders in the containers directory into your project. You should be able to copy just the .devcontainer folder and ignore everything else. See the definition's README for details.

Adding a definition to an existing repository

You can share a customized dev container definition for your project by adding the files under .devcontainer to source control. Anyone who then opens a local copy of your repo in VS Code will be prompted to reopen the folder in a container, provided they have the Remote Development extension pack installed.

Your team now has a consistent environment and tool-chain and new contributors or team members can be productive quickly. First-time contributors will require less guidance and there will be fewer issues related to environment setup.

Testing a definition

Some dev container definitions include test assets. To test a definition:

  1. If this is your first time creating a dev container, follow the getting started steps to configure your machine.
  2. Browse the contents of the containers folder in this repository and pick one. Review the README to see if there are any manual setup steps before continuing.
  3. Clone this repository locally.
  4. Start VS Code, press F1, and run the Remote-Containers: Open Folder in Container... command.
  5. Select the root of the definition folder from the cloned repository when prompted (not the test-project folder if present).
  6. See the definition's README for what to do next.

Sample projects

If you want to try a sample project which already has a dev container, check out one of the following repositories:

Contents

  • containers - Contains reusable dev container definitions.
  • container-templates - Contains templates for creating your own container definitions or to contribute back.
  • repository-containers - Dev container definitions for working public source code repositories.

Common Questions

Can I just reuse an existing container image or Docker / Docker Compose configuration?

Yes, if you want to use an existing Dockerfile as a starting point, run Remote-Containers: Add Development Container Configuration Files... from the Command Palette (F1). You'll be prompted to select a Dockerfile or Docker Compose file and customize from there. If you prefer, you can also start up the container and attach to it.

What is the goal of devcontainer.json?

A devcontainer.json file is similar to launch.json for debugging, but designed to launch (or attach to) a development container instead. At its simplest, all you need is a .devcontainer/devcontainer.json file in your project that references an image, Dockerfile, or docker-compose.yml, and a few properties. You can adapt it for use in a wide variety of situations.

Contributing and feedback

Have a question or feedback?

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

License

Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See LICENSE.