Better Programming

Advice for programmers.

Follow publication

Member-only story

Can Development Life Exist Without Docker Desktop?

Randal Kamradt Sr
Better Programming
Published in
7 min readSep 27, 2021

Fork lift moving containers
Image by Pashminu Mansukhani from Pixabay

If you haven’t heard by now, Docker Desktop will charge a subscription fee for companies with more than 250 employees or more than 10 million dollars in revenue. It’s not a huge fee, and if your company is already using Docker Hub private repositories, I believe you’re covered. But it does beg the question, can we live without Docker Desktop on development computers? I believe the answer is yes, and I will demonstrate how.

There are two distinct aspects of Docker that need to be replaced: building images and running images. For building images, there are a number of non-Docker solutions but I’m going to choose Google Jib. For running images, I’m going to use MicroK8s. Both solutions will work with most Java microservices with only minor changes.

To demonstrate what is needed for these solutions, I’m going to convert my blockchain microservices from Docker Compose to MicroK8s based Kubernetes. These services already use Google Jib, as most of my Java services do, but I will go over what you will need to do to switch over your services. Read my article about blockchain microservices for more information on the code involved.

One trick to building Docker images is that the build needs to happen inside the VM if there are any platform-specific operations that need to happen. This is where Java’s write-once-run-anywhere facet comes in handy, there are no platform-specific operations needed for most builds. So Jib adds three layers to a basic JRE image; dependent jars, class files from your build, and resource files from your build. That way if you only change a resource file, it only needs to rebuild a small layer. Only if you change your dependencies does it need to build all three layers.

To use Jib, you simply need to add the Maven plugin to your pom.xml file for all projects that produce an image. You don’t need a Dockerfile because the instructions for building the image are very similar for all Java applications. The only differences are finding the main class to run on image startup, and how it starts up. Jib does a good job finding a unique main class, but it will need help if you have more than one main class or your main class is in a dependent jar…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Randal Kamradt Sr
Randal Kamradt Sr

Written by Randal Kamradt Sr

Java software engineer for Coinme Inc. Artist and musician. https://rkamradt.github.io/

Responses (2)

Write a response

Since I work on Linux I’ve no idea what Docker Desktop (not available for Linux) does that Docker CLI doesn’t. This later being still free, I’d like to understand why the change in Docker Desktop policy is so problematic to devs under MacOS or…

Thanks for sharing Randal!