In this blog post we are going to touch on the following:
- Docker Images
- Dockerfiles
- Union File system
- Registries
Docker Images.
A Docker image is the application binaries and dependencies that include Metadata about the image data and how to run the images that build a Docker container. An image is a file that also acts as the starting point when using Docker. An image does not have a complete OS, there is no Kernel, no drivers
Enough theory let us get started with our first image. It will be good if I point out at this point that we are not exactly creating our own image from scratch, but we will get to that soon. What we are going to do now is launch a container using an image. So, assuming you have Docker setup already; run the following below: