Learning Docker For Windows On Mac



I'm excited to say that Docker for Mac is now shipping with support for both Docker Swarm and Kubernetes built-in. Let's take a look at what this means, a brief history of developer tooling and then cover my first impressions as I kick the tyres.

Once you are done installing Docker, test your Docker installation by running the following: $ docker run hello-world Hello from Docker. Docker Desktop delivers the speed, choice and security you need for designing and delivering containerized applications on your desktop. The user can specify the base image and list of commands to be run when a container image is deployed or startup for the first time. In this article, you will learn how to create a Windows-based docker image from Dockerfile using a Windows container. This process has several benefits over using a pre-built container image. Setting up the Environment: Option 1: Docker for Mac/Windows. This website uses cookies and other tracking technology to analyse traffic, personalise ads and learn how we can improve the experience for our visitors and customers.

Why does this matter to developers?

Docker CE (nee. Docker) is a piece of software which has brought the benefits of containers to the people (democratisation) and made them extremely easy to use and valuable (commoditisation). This has been a journey and we didn't start day one with Kubernetes support in Docker for Mac, so let's look at the context:

Containers (which normally means Linux containers) were not available on Windows or Mac when Docker began its story as a spin-out from DotCloud.

Docker tooling - a brief history

Here's a a brief history of developer tools and how they brought Linux containers to Mac and Windows users:

Virtual machines - version 1

Before any of this tooling someone on a Mac or Linux computer who wanted to access Linux container would have needed to have installed a Virtual Machine host such as VirtualBox or VMWare Workstation/Player. They would need to install a Linux host manually and then set up shared folders. Sometimes people also use vagrant from Hashicorp to provide a consistent CLI between VM host software.

Use when: none of the following options work for you. This option is not recommended.

Docker Machine

Docker Machine was the next step in the tooling evolution. Docker Machine automated the setup of a virtual machine on a local or remote environment and made use of standard ISO images (boot2docker) plus a writeable disk area. This also meant upgrading from one version to another was easy.

Once the VM was running SSL certificates were generated and then the Docker client accessed the remote or local VM over TCP/IP. It could support multiple-concurrent Docker versions or hosts at the same time for clustering.

Pros:

  • multiple Docker back-ends even on the same computer
  • works on Linux
  • uses simple distribution boot2docker
  • pluggable architecture - with plugins for major cloud providers / distros

Cons:

  • CLI-driven
  • Less 'native' integration on Windows / Mac

Use when: you're on Windows 7 or Windows 10 Home or need a cluster of machines on your local computer. Or you're creating/managing a remote cloud cluster.

Docker for Mac/Windows

The problem with Docker Machine was that it involved too many manual steps (docker-machine env etc) and configuration sometimes needed to be regenerated for TLS. Docker for Mac/Windows or DfM was pitched as a 'native' integration which meant it came with a UI and a menu-bar that was hugely popular. The initial release of DfM was through a limited beta and there was a big demand on Twitter for it.

Pros:

  • 1-click install
  • Command-line is automatically configured
  • Configuration through UI for proxies / registries etc
  • Can be started/stopped with a single click

Cons:

  • DfM has had performance issues with shared volumes
  • High CPU usage is reported by hyperkit resulting in low battery life
  • Only available on Windows 10 Pro or Enterprise

Use when: it's available to you and you need Docker Swarm or Kubernetes support for local development.

Minikube

Minikube has a very similar user-experience to docker-machine and also relies on boot2docker. Its primary purpose is to create a single-node Kubernetes cluster which also includes a Docker host that can be used for development.

Example output of starting up minikube on my Mac:

Pros:

  • Easy access to Kubernetes for local development
  • It works

Cons:

  • Kubernetes uses a significant amount of battery at idle
  • Docker integration feels similar to docker-machine
  • Docker version lags behind significantly (i.e. no multi-stage builds until recently)
  • Some features hard to access or not officially supported such as RBAC (role-based authentication control)
  • Should use minikube start/stop

Use when: you need a local Kubernetes environment but don't mind if the Docker version is older.

To summarise the tooling there are pros and cons to each option. Let's move onto my first impressions of Kubernetes on Docker for Mac.

First impressions

Here are my first impressions through getting hold of the update, kicking the tyres with an application and seeing what the Docker 'stack' integration is like..

Getting it

You currently need to be on the 'edge' track of Docker CE in 17.12 or greater to get Kubernetes support. The support is then downloaded via a UI option and this can take several minutes.

Contexts and namespaces

If you've ever installed minikube then you'll have to switch out of that context into the DfM context otherwise kubectl will hang.

If you find that too verbose to type in then the Kubernetes community has a tool called kubectx that make that shorter.

One of the other key differences between Docker Swarm and Kubernetes is the support for namespaces. By default parts of the Kubernetes ecosystem run as containers in a hidden namespace called system.

To view all containers running type in kubectl get all --all-namespaces:

You'll see that a lot of services are running by default. This is in effect the same as what is running for Docker Swarm, but it's hidden from you and baked into a few fixed binaries rather than being split out to this degree.

Let's check which version got shipped?

Looks like we get 1.8.2 which is not the latest but does include all the most important features.

Docker's integration

Docker is attempting to make Kubernetes easy to use for Docker Swarm users by creating an integration between Docker stacks (as seen in Swarm) and Kubernetes native deployments/services.

Kubernetes is by nature extensible and Docker are using Custom Resource Definitions (CRDs) which add a 'stack' concept. It means you can do this:

Let's try a Docker compose file I have and see what happens:

Here's the CRD:

And it appears to have created some Pods:

Prometheus has an issue that I can debug by typing in: kubectl logs pod/prom-76b4f584f7-qckc9.

Take away - if you're still using docker-compose for development or production - you can probably move straight to Kubernetes and enjoy the benefits of clustering.

Native workflow

So for a native workflow we'd expect a few things:

  • kubectl apply with YAML works
  • helm works
  • RBAC is enabled

Let's try to deploy OpenFaaS - Serverless Functions Made Simple for Docker and Kubernetes.

If you run into an error about namespaces then type in kubectl apply -f ./namespaces.yml in the faas-netes folder and try again.

This is a good test because OpenFaaS will display a UI at localhost:31112 and also uses both RBAC and two namespaces (openfaas / openfaas-fn).

We see no errors:

The services are created too. See them by typing in:

Now open the UI and deploy a function using the store:

Then select Figlet - figlet is a Linux binary that can generate ASCII text-logos.

You'll see the Function/Pod created here:

Kubernetes uses more primitive objects to make up a 'service' than Docker Swarm. Find out more about Kubernetes fundamentals below.

Now invoke the function and see the result:

It works very well and was really easy to deploy. This will help the community maintain and build the Kubernetes integration for OpenFaaS.

I said we'd need helm to work too, which is a package manager for distributing software like OpenFaaS, Minio or similar. The equivalent doesn't exist for Docker Swarm.

I saw this Tweet before writing the post so it looks like helm also works out the box:

Just setup #kubernetes on the @Docker for Mac beta and did a #helm install... this is so so great!!

— Adnan Abdulhussein (@prydonius) December 15, 2017

Wrapping up

One of the key advantages of having this new support in Docker for Mac is not the stacks integration - it's the simplicity, speed and ease of use over existing tools. I believe a portion of existing Docker Swarm users will make use of the stacks integration and it could be a useful upgrade path for them if they decide to move to Kubernetes.

Is Docker Swarm dead? I don't have any inside information as a member of the Docker Captains group, but what I've been told generally is that while there is a customer-base for Docker Swarm it will continue to be supported. For example the original Swarm that ran as individual containers is still supported by Docker's UCP product.

If you read the developer reactions on Hacker News
you'll see Swarm still has its fans and if Kubernetes wants to convert them then my impression is that installation/maintenance for on-prem installations needs to improve.

So as for my first impressions - it's great and everything I was expecting to work does. I'm really impressed with what Docker has done with Docker for Mac and the internal components that make it up like LinuxKit.

Follow and share

Follow me and share this post on Twitter to help me get to 10k followers:

First impressions: Docker for Mac with Kubernetes and a brief history of developer tooling - https://t.co/XVlTaW8tgz@docker@kubernetesiopic.twitter.com/YrftDCEwEa

— Alex Ellis (@alexellisuk) January 7, 2018

See also:

I highly recommend reading the differences between Docker Swarm and Kubernetes - even if you're a Kubernetes veteran, this blog post may be useful for your colleagues and friends:

Docker
  • Blog - What you need to know: Docker Swarm and Kubernetes

  • Read the docs on the Docker and Kubernetes integration

  • Star: Award-winning OpenFaaS - serverless functions you can run yourself on Kubernetes or Docker Swarm

'Docker Captains are experts and leaders in their communities who demonstrate a commitment to sharing their Docker knowledge with others.'

Mac

Alex Ellis is a Docker Captain and the author of the OpenFaaS project

The concept of an app launcher or a dock on a Windows desktop might seem redundant to some. This is especially true for Windows 10. Yet, app launchers or MacOS like docks have been quite in demand over the years on Windows. This, in turn, has led many developers to take on the challenge and deliver a good experience to users on Windows. While Mac OS docs don’t offer a lot to the Windows 10 desktop in terms of features, they do add a layer of convenience. Not to mention they look much fancier than a start menu.

A dock also manages to allow you to add many apps folders or files on your desktop without making it look cluttered. There’s also the added functionality that you can access these usually from anywhere without having to minimize currently open windows. There are quite a few docks available on Windows, and some of them are quite good. Good, but if your needs are limited to looks or simply an app launcher that complements the Windows taskbar. Here are two MacOS docs for your Windows 10 PC that should satisfy your needs.

The following 2 Mac OS like docks hugely resembles the one found on Apple’s computers. Try them to easily access your favorite apps. These docks not only look beautiful but are also highly customizable. You should also check out these cool Windows taskbar tips and tricks for a better experience.

Rocket dock – Simple and elegant

Docker For Windows

Rocket dock has been one of the most popular dock options for Windows. The development on Rocket dock seemingly ceased years ago and there are no new features added. To be honest, it could actually use some more features. But there’s a good side to this apparent lack of features. It makes Rocket dock one of the simplest docks available for Windows. It does still have some of the basic features you might want in your dock. These include the ability to change individual icons, change the position of the dock, place it behind open windows or on top of them, etc. You can also adjust the quality of icons depending upon your hardware.

I’d suggest not changing a lot in the icon settings though since the default animation and zoom settings are quite ideal. The animations are so smooth with Rocket dock that it often feels like an integrated part of the system. It also has themes and the internet is full of them, the dock being so popular. The best place to find these is the Rocket dock’s official website. You can also extend the functionality using docklets, also available on the website. You can also let minimized windows appear on the dock if you wish to use it like the Mac OS dock. This functionality seems broken and is often not reliable though especially as long as there is a taskbar.

Also, Rocket dock will always overlap with open windows. That is, Windows will either slide over or under it, depending on your preferences. Unlike some other docks or the taskbar, Rocket dock cannot allocate a dedicated space for itself.

Winstep Nexus Dock – Feature-packed, not so simple

There’s a distance between the land and the sky, as you may have noticed. I’m not getting philosophical here, but that’s exactly the distance, or difference between Nexus dock and Rocket dock. Although both of these are essentially docks, Nexus dock is perhaps the best there is for Windows. It has so many features that you’d just skip over many of them even if I did type them all out. As a result, though, it is not the easiest, most user-friendly dock around. Launching apps and adding them to the dock still works pretty much the same as any other dock. There is a bit of a learning curve if you wish to customize the dock to look and behave as you want.

Learning Docker For Windows On Mac Os

Don’t miss:Best Free Icon Packs for Windows 7, 8 and 10

It has everything Rocket dock has, such as themes and docklets, and in greater numbers even. It also has numerous features and fancy animations that Rocket dock does not have. Appearance settings such as icon reflections, icon launch animations, close animations, delete animations, the duration of these animations, you can micromanage everything. All of this does come at a price though. While there is a free version too, you’d have to shell out a few bucks for the Ultimate version which has all the features. I’ve used Nexus dock for a long long time before Windows 10 came along, and I’ve customized it to my heart’s desire. It even has a start menu button!

In case you’re wondering, minimizing Windows to the dock is not reliable on this one either but it works sometimes at least. To wrap up, if you wanted to replace the taskbar entirely, you can depend on the Nexus dock. Winstep Nexus is one of the best Mac OS docks for Windows 10 out there.