Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Latest commit

 

History

History
25 lines (16 loc) · 1.78 KB

README.md

File metadata and controls

25 lines (16 loc) · 1.78 KB

Developer Tools Tutorials

This directory contains tutorials on how to set-up and use common developer tools and programming languages with Docker. We encourage you to contribute your own tutorials here.

IDEs

With the introduction of Docker for Mac and Docker for Windows, developers on those platforms got to use a feature that developers on Docker for Linux had all along: in-container development. With improvements in volume management, Docker is able to detect when code in a volume changes, and update the code in the container. That means you get features like live debugging in a running container, without having to rebuild the container.

You can also have all your dependencies in a container. All you need is Docker and something to edit your source files on your machine, and you're good to go. That means you can, for instance, debug Node.js in your container without having Node.js on your local machine.

In order to take advantage of this feature in an IDE, there is some set-up required as there is for any project. The following sections describe how to configure different languages and IDEs to do in-container development.

  • Eclipse
  • IntelliJ
  • Netbeans
  • Visual Studio Code

Programming languages

This is a more comprehensive section detailing how to set-up and optimize your experience using Docker with particular programming languages.