July 2017
Intermediate to advanced
374 pages
8h
English
Setting up Docker is pretty straightforward. There are mainly two editions of Docker in the marketplace.
Docker Inc., which owns the containerization Docker product, renamed the Docker Commercially Supported (CS) edition to Docker Enterprises Edition (EE), and also converted the Docker Engine to Docker Community Edition (CE).
There are a couple of changes from EE and CE; obviously, the commercial support being one of them. However, in the Docker Enterprise Edition, they have built a couple of certifications around the container content, platform plugins, and many more.
In this book, we will use the Docker Community Edition, so we will begin by updating the APT repository:
$ apt-get update -y
Now, let's add the ...