Edit

Learning Docker

A few weeks ago, I started a new job at Codemate (yay! More on that in a future post). Among many other things, this was the occasion for me to learn more about a technology I had been avoiding so far: Docker, and the whole concept of containerization. I usually prefer to focus on user-facing work, and leave sysadmin and ops to others – but I also have a sweet tooth for any and all automation, especially the type that can save developers time and headaches. It was definitely time to dive deep!

This blog post is my overview of the resources I looked at and the things I learned over the last few weeks.

Where from, where to

Starting on a new project, I quickly realised Docker would be a central part of my day to day work. It is used for development environments, CI, staging, as well as production. When learning something as fundamental and ubiquitous, I think it’s quite important to take a step back and note where you’re starting from:

  • What are the fundamental principles?
  • What is the context?
    • Here I would think of things like micro-services, and generally the move to cloud platforms.
  • What do you know already?
    • For me, I had some notion of basic docker commands, and I had used Vagrant extensively to achieve similar results as what Docker is for in development.
  • Where do you want to be?
    • Not everyone needs to be an expert at everything. I don’t need to know the details of the consensus algorithm used in Kubernetes clusters (it’s called Raft.

I quite like to summarise this as a score from 0 to 5, 0 being “you know nothing Jon Snow” (NSFW), and 5 being “complete expert, Ask Me Anything, I can teach anyone about any of this”. You can then assess how you perceive your skills before starting to learn, and decide on how much you want to know.

I gave myself a 1/5 because of my Vagrant knowledge and awareness of the problems this is trying to solve, and decided I would need to get to 4/5 to do my job effectively. But this is quite a big jump, so for now let’s get to 2 out of 5.

Going to 2/5

After doing a bit of research, here are the things I decided on to make a good “2 out of 5” baseline:

  • Docker principles and vocabulary
  • Docker from scratch, with the official Get started with Docker
  • docker-compose, with its official guide
  • Docker with Django – unfortunately this stops very early, and doesn’t address eg. migrations.
  • Make a few Docker improvements to my current project
  • Discuss Docker pros and cons with friends and coworkers
  • Write this blog post, of course!

I had initially identified other areas to study (eg. Docker usage in CI, 12-factor apps with Docker, and image registries) but decided it would be better to start smaller.

I also made a list of resources to look at to achieve the above learning goals, complementing the official documentation, and settled on two of the simplest ones out there:

Learn Docker in 12 minutes 🐳


Docker Compose in 12 Minutes


Reading through Dockerfiles

Both of those videos were very good to understand the key principles, but I also needed to get up to speed with Linux distributions and general provisiniong tasks – I also decided to spend time reading Dockerfiles (what a great pastime!).

What I learned

In short, quite a lot! I logged all of my progress on my koans-playground repository, as a way to see my progress.

Vocabulary

The basic understanding of the key principles, and of how containers and images and services work together, was critical for me to actually understand what I was doing day to day.

Containerization: the use of Linux containers to deploy applications. Containers are not new, but their use for easily deploying applications is.

Image: an executable package that includes everything needed to run an application – the code, a runtime, libraries, environment variables, and configuration files.

Also Image: template to create a target container (snapshot) Images are defined using a Dockerfile

Container: running instance of an image

Also Container: a runtime instance of an image – what the image becomes in memory when executed (that is, an image with state, or a user process)

Dockerfile: defines what goes on in the environment inside your container. Access to resources like networking interfaces and disk drives is virtualized inside this environment, which is isolated from the rest of your system, so you need to map ports to the outside world, and be specific about what files you want to “copy in” to that environment. However, after doing that, you can expect that the build of your app defined in this Dockerfile behaves exactly the same wherever it runs.

Repository: a collection of images – sort of like a GitHub repository, except the code is already built.

Registry: a collection of repositories.

Service: defines how containers behave in production

Also Service: really just “containers in production.” A service only runs one image, but it codifies the way that image runs—what ports it should use, how many replicas of the container should run so the service has the capacity it needs, and so on.

Compose: a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your application’s services. Then, with a single command, you create and start all the services from your configuration.

The Docker and docker-compose workflows

For Docker,

  1. Write Dockerfile
  2. Build an image from the Dockerfile
  3. Run the image to get containers

For docker-compose,

  1. Define your app’s environment with a Dockerfile so it can be reproduced anywhere.
  2. Define the services that make up your app in docker-compose.yml so they can be run together in an isolated environment.

Docker vs docker-compose

It was also helpful to understand why these are two separate tools, and when you would use one over the other. In short, from the official docs, here are the useful features of docker-compose:

  • Multiple isolated environments on a single host.
    • Use a project name to isolate environments from each others (of the same app, of apps running the same services, etc).
    • By default, project name is basename of project directory.
  • Preserve volume data when containers are created.
  • Only recreate containers that have changed.
  • Variables and moving a composition between environments.

Next steps

Up next, getting to 3/5 of course!

Here are my goals for this milestone so far: