Understanding Docker Images, Containers, and Registries
Image Sources and Container Management
Docker images can be categorized into two main types:
Base System Images: Minimal operating system templates used as foundations
Application Images: Pre-configured service images ready for deployment
Creating base system images from templates:
# Import CentOS 6 minimal template
cat centos-6-x86-minimal.t ...
Posted on Tue, 09 Jun 2026 16:43:38 +0000 by minou
Docker Image and Container Management Commands
Docker Image Operations
Listing all available images on the local system:
docker image list
Pulling an image from the registry without specifying a tag defaults to the 'latest' tag:
docker pull mysql
Searching for available images in the registry:
docker search mysql
Official images are verified and maintained by Docker's team, ensuring ...
Posted on Mon, 11 May 2026 06:05:59 +0000 by rhodrykorb
Essential Docker Commands Reference
System Information
Check Docker Version
docker version
Displays version information for both Docker client and server components.
View Docker System Details
docker info
Shows comprehensive system information including container counts, images, and configuration.
Access Command Help
docker --help
Displays usage information and lists all avail ...
Posted on Sat, 09 May 2026 05:29:59 +0000 by hobeau
Understanding Docker Images and Containers: A Visual Guide to the Union Filesystem
Image Definition
An image is a collection of read-only layers stacked vertically, offering users a unified view of the filesystem. The following diagram illustrates this concept.
From the left side, you can observe multiple read-only layers stacked on top of each other. Each layer (except the bottom one) contains a pointer to the layer beneath ...
Posted on Thu, 07 May 2026 02:50:21 +0000 by ArmanIc