Book Image

Docker Bootcamp

By : Russ McKendrick, Pethuru Raj, Jeeva S. Chelladhurai, Vinod Singh
Book Image

Docker Bootcamp

By: Russ McKendrick, Pethuru Raj, Jeeva S. Chelladhurai, Vinod Singh

Overview of this book

<p>Docker allows you to create a robust and resilient environment to generate portable, composable, scalable, and stable application containers.</p> <p>The book starts by installing the core Docker Engine on MacOS, Windows 10 and Linux desktops. We will then define multi-container applications and understand the advantages of using containers locally. Once this is done, we will deploy containers on a single Docker host which is publicly accessible. Furthermore, we will learn how to deploy and configure a Docker Swarm cluster and explore networking and storage third-party plugins to extend the core Docker functionality. Towards the end, the book will demonstrate how to monitor and troubleshoot day-to-day problems in addition to various real world examples of container deployments.</p>
Table of Contents (15 chapters)

Summary


Hopefully you are now starting to see use cases for different types of plugins.For example, a developer is fine working with local volumes, however for production traffic you would want to have some sort of either shared or block storage which is accessible to containers across multiple Docker hosts.

With plugins, this is possible without any real changes to your user's workflow as you know exactly how Docker handles volumes created with the docker volume create command.

As already mentioned, Docker are in the process of transitioning legacy plugins to a new architecture, a list of legacy plugins can be found at the following URL https://docs.docker.com/engine/extend/legacy_plugins/ and new plugins which use the new architecture a can be found at https://store.docker.com/search?q=&type=plugin.

In the next chapter, we are going to look at how to monitor your containers, and what to do if anything goes wrong.