Let's start off by installing Docker on our Mac. Visit the docker site to download the Mac application.
Then we will need to create a directory in which to start building our image.
cd ~ && mkdir first-docker-image
After creating your directory, let's create an image in which we can create our own container. We will first start off by cre...