DEV Community

Cover image for Dockerize your Development Environment
Niall Maher
Niall Maher

Posted on

Dockerize your Development Environment

With Visual Studio Code

A problem I had within our teams in my last gig was running projects consistently across multiple operating systems. I spent a few weeks trying to hack around docker files that would give the teams a consistent workflow locally but then... I found that Visual Studio Code can do it so easily with just 1 plugin.

This guide combines Visual Studio Code and Docker to mimic your production settings and create consistency across the development environments. Both Docker and Visual Studio Code are required to be installed to use this guide.

The guide is written for a Node.js environment with Create React App but the steps can be altered for whatever the chosen environment required is.

You will even still have hot reloading working inside your dev container 💜

If you want a video version of this guide:


Or else continue reading to copy and paste 🧑🏻‍💻

In Visual Studio code install the following Plugin:

Imgur

It can be found here: https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers

This allows us to run Visual Studio Code in a container.

In the root directory of your project, you need to create a folder called .devcontainer. This is where we will store the settings for our environment.

Then create 2 files in this folder, devcontainer.json and a Dockerfile.

The naming is important as there are expected folder and file names Visual Studio Code expects for us to run the container successfully.

Your folder structure should match this:
Imgur

Within the Dockerfile we choose the image and RUN any commands required (such as global installs) after we install the image.

Dockerfile

FROM node:12.14.1-stretch
RUN npm install -g eslint prettier
Enter fullscreen mode Exit fullscreen mode

Imgur

Then in the devcontainer.json we can configure all of the settings.

The devcontainer.json is basically a config file that determines how your dev container gets built and started.

devcontainer.json

{
  "name": "Node.js Sample",
  "dockerFile": "Dockerfile",
  "appPort": 3000,
  "extensions": ["dbaeumer.vscode-eslint"],
  "settings": {
    "terminal.integrated.shell.linux": "/bin/bash"
  },
  "postCreateCommand": "yarn install",
  // Comment out the next line to run as root instead. Linux users, update
  // Dockerfile with your user's UID/GID if not 1000.
  "runArgs": ["-u", "node"]
}
Enter fullscreen mode Exit fullscreen mode
Option Description
dockerfile Relative path to a Dockerfile that you wish to use as your image.
appPort A port or array of ports that should be made available locally when the container is running
extensions An array of extension IDs that specify the extensions that should be installed inside the container when it is created.
settings Adds default settings.json values into a container/machine specific settings file.
postCreateCommand A command string or list of command arguments to run after the container is created.
runArgs An array of Docker CLI arguments that should be used when running the container.

Full list of devcontainer.json options.

devcontainer.json

Check

Once the container is running and you're connected, you should see your remote context change in the bottom left of the Status bar:
Imgur

With the Remote - Containers extension installed, you will see a new Status bar item at the far left.
Imgur

The Remote Status bar item can quickly show you in which context VS Code is running (local or remote) and clicking on the item will bring up the Remote - Containers commands.

Imgur

Select Reopen in Container.

Imgur

Wait for the container to build

If this is your first time connecting, a Docker image will be downloaded, built, and starts a container with a copy of VS Code Server running. This might take a few minutes the first time, but future connections will only take seconds.
Imgur

Check your environment

One of the useful things about developing in a container is that you can use specific versions of dependencies that your application needs without impacting your local development environment.

node --version; 
npm --version
Enter fullscreen mode Exit fullscreen mode

Follow me on Twitter

Subscribe on Codú Community

Latest comments (25)

Collapse
 
andrweisr profile image
AndrWeisR

The source of your app is in the container, right? How do you update the source in an external repo? Do you just push to github from within the container?
Do you have visibility of the source files in the host operating system?

Collapse
 
niro profile image
Arnau

What theme are you using in VScode?

Collapse
 
nialljoemaher profile image
Niall Maher

Synthwave '84 personally, but for the video, I think I used Cobalt

Collapse
 
niro profile image
Arnau

Thanks! These are awesome :)

Collapse
 
jefflindholm profile image
Jeff Lindholm

Using powershell:
I just do dev-here node:latest it will download the image mount the current directory to /code in the container and you can edit locally update to git etc. Works for any container that you want, I use it for rust, donet core, node, etc.

function dev-here($lang, $port = 8000) {
    if ($lang -eq '') {
        echo 'usage is dev-here <container name>'
        return
    }
    $args = 'bash'
    if ($lang -eq 'python') {
        $args = "bash"
        # $args = "bash -c 'cd code && pip install -r requirements.txt && bash'"
    }
    $msg = $lang + ' opening port ' + $port + ' running ' + $args
    echo $msg
    echo "docker run --rm -it -e USER=dev -p ${port}:${port} -v ${PWD}:/code $lang $args"
    docker run --rm -it -e USER=dev -p ${port}:${port} -v ${PWD}:/code $lang $args
}
Collapse
 
nialljoemaher profile image
Niall Maher

Nice well then all this article would give you is all the plugins out of the box too. This is a really smart script 💜

Collapse
 
anibalardid profile image
Anibal

Hi !
Devilbox is a great alternative to newbies, to use Docker with some benefits and very easy

Collapse
 
nialljoemaher profile image
Niall Maher

I've never seen Devilbox before I will take a look

Collapse
 
anibalardid profile image
Anibal

I've been using it for a long time. It's very comfortable to use ;)
I use docker and kubernetes standalone too, but to my PHP development environment I use devilbox :)

Collapse
 
timhub profile image
Tech Tim (@TechTim42)

docker is great, docker on non-linux is not

Collapse
 
nialljoemaher profile image
Niall Maher

They fixed it on Windows recently, it's worth trying again

Collapse
 
timhub profile image
Tech Tim (@TechTim42)

i am on mac, I do use docker everywhere, but I still feel it is much slower then on a linux os.

Thread Thread
 
nialljoemaher profile image
Niall Maher

I'm using a Mac too haven't actually used Docker on Linux so I have no idea how much faster it could be 😂

Collapse
 
nicolasmendonca profile image
Niko Mendo

Excellent article, man. Super useful and super easy.

Collapse
 
nialljoemaher profile image
Niall Maher

Thanks!

Collapse
 
erikthered profile image
Erik Nelson

Nice post, I was going to write one along these lines but now I don't have to!

I actually prefer this workflow in lieu using rvm, nvm, etc. these days. You can use a Docker Compose file too, which is handy for apps with more complicated dependencies.

Collapse
 
nialljoemaher profile image
Niall Maher

I do the exact same! I'm wondering why more OSS communities don't do the same. It's such an easy way to get up and running.

Collapse
 
rberrelleza profile image
Ramiro Berrelleza • Edited

This is pretty cool, love the format! I'm the maintainer of a couple of open source projects focused on moving dev environments to containers in Kubernetes, would love your thoughts on them!

Collapse
 
nialljoemaher profile image
Niall Maher

Oh nice I'll take a look over the day 😁

Collapse
 
lukebillo profile image
LukeBillo

Excellent post! I think you're one of the first people I've seen put both video and text explanation- although I don't exactly go far and wide around dev.to.

The extra effort is greatly appreciated, as I usually like to read first and watch later when I know I'm interested. Thanks :)

Collapse
 
nialljoemaher profile image
Niall Maher

Thanks! I know I learn better from video so that's why 😂

Collapse
 
codeur47 profile image
YORO Ange Carmel

Thank for the useful post

Collapse
 
nialljoemaher profile image
Niall Maher

Glad it was useful at least 💜

Collapse
 
bgauryy profile image
bgauryy

Great post!

Collapse
 
nialljoemaher profile image
Niall Maher

Thanks 💜