Book Image

Troubleshooting Docker

By : Vaibhav Kohli, Rajdeep Dua, John Wooten
Book Image

Troubleshooting Docker

By: Vaibhav Kohli, Rajdeep Dua, John Wooten

Overview of this book

You?re pro Docker? You?ve read all about orchestration with Docker in books? Now learn how to troubleshoot Docker in practice. Gain all the tools to safely see Docker in action with this 2017 book.
Table of Contents (17 chapters)
Troubleshooting Docker
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface
Free Chapter
1
Understanding Container Scenarios and an Overview of Docker

Redistributing via Docker registry


Docker registry is the server-side application that allows the users to store and distribute Docker images. By default, public Docker registry (Docker Hub) can be used to host multiple Docker images that provides free to use, zero maintenance, and additional features such as automated builds and organization accounts. Let's take a look at public and private Docker registries in detail.

Docker public repository (Docker Hub)

As explained earlier, Docker Hub allows individuals as well as organizations to share the Docker images with its internal teams and customers without the hassle of maintaining a cloud based public repository. It provides centralized resource image discovery and management. It also provides team collaboration and workflow automation for the development pipeline. Some of the additional functions of the Docker Hub, besides Image repository management are as follows:

  • Automated build: It helps in the creation of new images whenever code is changed...