What is this Docker thing that everyone is so hyped about?

Docker

Approximately one year ago I was browsing Hacker News and I came across this video:

I found it profoundly exciting for reasons I could not explain, mostly Solomon’s infectious enthusiasm and the enthusiasm that the Hacker News commmunity reacted to it with. When I learned that Docker was being written in Go I was even more intruiged. Especially having played with Go quite a bit, I have a hunch that Go will be a language which dictates the future of the “cloud” in a lot of ways. Cloudflare, for instance, has a ton of infrastructure written in Go that powers their CDN and other cool tools they provide such as Railgun. This was definitely a project to keep an eye on. I mentally dog-eared it.

There was only one problem: I didn’t understand what Docker was yet. There was talk of containers and shipping but I didn’t understand what it all meant, or what it could be used for.

Then about six months ago, things began to gel and sink in for me.

The Problem

In order to better understand Docker you have to understand the problem it is trying to solve.

Modern day development (I’ll be focusing on the web here) lives in a world of lots of complexity. In even the most basic application you are likely to have a back-end language that lives on the server, a front-end language (almost ubiquitously JavaScript) that lives on the client, third-party and in-house libraries for both of these languages to manage, a database, an operating system (often deploying to Linux but developing on God-knows-what OS), and more. And this is for a basic app! What if you have utility programs that are written in another language? What if you have other weird dependencies and requirements?

My point is that this all adds up to a lot of complexity, and worst of all- it is complexity that you have to manage across multiple platforms. If I got an app up and running on my Macbook, and wanted to deploy to Linux, my options were not great. If you’ve ever administrated your own VPS, much less a bare metal server, you know what I mean. Having to install all of the packages and dependencies that you have in a totally different way is a recipe for headaches and tears. Getting stuff to production is a completely different ball game from writing it in the first place. Different technologies on different platforms create a “Matrix from Hell” (pictured above) that makes even the most courageous ops person want to set her hair on fire.

Traditionally there have been a variety of solutions that have popped up in response to this, ranging from “just develop in PHP and FTP is your deploy” (ew) to Heroku (git push heroku master is your deploy) to virtualization with provisioning (see Vagrant). Vagrant in particular has been gaining a lot of steam lately, for very good reason, and is a great technology (see my post on how we won Startup Weekend if you’re curious why Vagrant was useful to us in that case). However, virtual machines have several disadvantages as well. Because the VM software has to simulate actual physical hardware, you take a big performance hit. They are slow to start up and, especially before Vagrant started to become popular, difficult to get inexperienced developers started on (Download Vagrant and its dependencies and run vagrant up is a lot nicer than going through all of the VirtualBox menus, then provisioning your box manually).

Containers

Containers popped up as a solution to this issue. They are sort of like virtual machines, but they focus on process isolation and containment instead of emulating a full-fledged physical machine. The “guest” container uses the same kernel as the “host” machine (and possibly some other resources as well, but my understanding of this at this time is a little fuzzy). This allows many of the advantages of virtual machines without some of the aforementioned disadvantages.

Enter Docker (from the homepage):

Docker is an open-source project to easily create lightweight, portable, self-sufficient containers from any application. The same container that a developer builds and tests on a laptop can run at scale, in production, on VMs, bare metal, OpenStack clusters, public clouds and more.

Docker’s goal is to provide a software solution that will allow users to “pack up” their applications into a standardized container and “ship it off” to wherever their heart desires. A container, once developed, can be deployed anywhere that Docker runs. They compare these containers to actual physical shipping containers, pictured above, which revolutionized international trade when it was standardized after World War 2. From Wikipedia:

Containerization dramatically reduced transport costs … reduced congestion in ports, significantly shortened shipping time, and reduced losses from damage and theft.

Sound like benefits that would be nice to have for your business?

A Cambrian Explosion

What is really interesting about Docker though, to me personally at least, is the Cambrian Explosion-esque fugue of creativity that it has inspired so far and continues to inspire in people everywhere. It is being used for things online that aren’t exactly aligned to its original use case but really hearken to a bold new future of tech. I know of at least one example where it is being used to make possible a interpreter-by-runnable-code editor for conducting Python interviews. Runnable.com uses Docker to host self-contained executable / editable little code projects where you can look at existing code which you know works, edit it on the fly, and re-run it. That’s awesome!

I’m super optimistic for the future of this technology.

Until next time, stay sassy Internet.

  • Nathan
I want to help you become an elite engineer. Subscribe to follow my work with containers, observability, and languages like Go, Rust, and Python on Gumroad.

If you find a mistake or issue in this article, please fix it and submit a pull request on Github (must be signed in to your GitHub account).

I offer a bounty of one coffee, beer, or tea for each pull request that gets merged in. :) Make sure to cc @nathanleclaire in the PR.