Book Image

Build Your Own PaaS with Docker

By : Oskar Hane
Book Image

Build Your Own PaaS with Docker

By: Oskar Hane

Overview of this book

<p>Docker is a great tool in many ways for developers and people in DevOps.</p> <p>We begin by learning how easy it is to create and publish your own customized Docker images and making them available to everyone. We also see how practical it is to separate every service to its own container. When you have published separated service containers, the process of running all kinds of platforms in the same server for easier cloud computing is a walk in the park.</p> <p>This book walks you through a use case project that will teach you how to customize and create your own Docker image, allowing you to run any platform you want. The project evolves throughout the book and emerges as a complete three containers Wordpress/MySQL platform when finished.</p> <p>By the end of the book, you will know how to create such a container on a Wordpress/MySQL platform, among others.</p>
Table of Contents (15 chapters)
Build Your Own PaaS with Docker
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

The Docker Registry Hub


One important part of Docker's popularity is its community and the ease with which you can share, find, and extend Docker images. The central place for this is the Docker Registry Hub that can be found at https://hub.docker.com/.

Browsing repositories

Here, we can search and, in many ways, browse for image repositories to find exactly what we're after. If we take a look at the popular ones, we will see what others are using the most.

If we click on the Ubuntu repository, we will see lots of information about the image, the tags that are available, users' comments, the number of stars it has, and when it was updated.

The screenshot is displayed as follows:

If we click on a tag in the main view, we'll see something called the Dockerfile. This is the image description that runs when an image is being created. Further in this book, we'll write our own.

If you're interested in an image in the Docker hub, I recommend that you read the Information/README as well as the other users...