Docker


Using Docker macOS / Ubuntu 14.04 LTS


#Option 1: Installing on macOS

Let's start off by installing Docker on our Mac. Visit the docker site to download the Mac application.

Creating an Image

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...


Read Blog Post