Docker and Visual Studio Code
I recently wrote about My Top VSCode Tips and Features, and one of the VSCode plugins mentioned was the Docker Plugin.
Docker is an open platform for developers and sysadmins to build, ship, and run distributed applications, whether on laptops, data center VMs, or the cloud.
Quite a mouthful, but wikipedia explains it a bit clearly.
Docker is a computer program that performs operating-system-level virtualization also known as containerization.
Essentially, it enables us package our applications into images, and run them as containers on any platform that has docker installed.
The aim for this article is to showcase the various ways the Visual Studio Code Docker plugin makes life easier when working with Docker.
We'll look at 2 developer stacks, NodeJS and Golang.
Installation
You need...