How To Remove Containers in Docker

There are a few things that we end up using over and over. I wanted to share three of these with other developers working with Docker.

dckr

Remove All Containers

Inevitably, during development, you’re going to pile up a bunch of stale containers that are just lying around — or maybe you have a bunch of running containers that you don’t use. We end up needing to wipe out all the containers to start fresh all the time. Here’s how we do it:

It’s pretty self-explanatory — it lists all the containers and then removes each one by its ID. There are several incarnations of this, but this one has the advantage that it can be used in Windows if you install UNIX command line tools (you could do that by grabbing MinGW, for example). Alternatively, on Windows, you can use:

Mount the Docker Unix Socket as a Volume

OK, the way we use Docker is a bit more advanced than the standard use cases, but it’s crazy how often we end up using this one. That’s because we always end up having to create Docker containers from within a Docker container. And the best way to do this is to mount the Docker daemon’s Unix socket on the host machine as a volume at the same location within the container. That means you add the following when performing a docker run:

Now, within the container, if you have a Docker client (whether that’s the command line one, or a Java one, for example) connect to that Unix socket. It actually talks to the Docker daemon on the host. That means if you create a container from within the container with the volume, the new container is created using the daemon running on the host (meaning it will be a sibling of the container with the volume)! Very useful!

Consider Terraform as an Alternative to Compose

Terraform is for setting up infrastructure really easily, and it’s great for that. For us, infrastructure means AWS when running in the cloud and Docker when running locally. We have several containers that we have to run for our application — during development, we run all the containers locally, and in the cloud, we run the containers across various EC2 instances, each instance getting one or more containers. This is perfect for Terraform.

We can use the Docker provider alone to configure resources to run our local setup, and we can use it together with the AWS provider to run our cloud setup. Note again that Terraform is for infrastructure setup, so you are doing things at a very high level — you may find that you need to do some prep using other tools to be able to work with Terraform. For example, you can’t use Dockerfiles — you will have to build your custom images prior to using them with Terraform.