Working with Docker Images: Search, Pull, Inspect, and Manage
An image is a packaged, executable artifact containing the application code, libraries, environment variables, and configuration files needed to run a container.
Searching for Images
The docker search command queries Docker Hub for available images.
docker search [OPTIONS] TERM
Useful options:
-f, --filter apply a filter condition
--format cu ...
Posted on Sat, 04 Jul 2026 18:03:54 +0000 by asifkamalzahid
Docker Distribution Matrix: CE, EE, Desktop, and Compose Explained
Docker CE (Community Edition)
Free, open-source release aimed at individual developers and small teams. It tracks the latest upstream feautres and is refreshed monthly.
# Ubuntu 22.04 example
sudo apt update
sudo apt install -y docker-ce docker-ce-cli containerd.io
Docker EE (Enterprise Edition)
Commercial offering with certified images, exten ...
Posted on Fri, 03 Jul 2026 17:59:43 +0000 by CherryT
Deploying Kubernetes 1.17 on Ubuntu 18.04 Using Kubeadm
Configuring the Container RuntimeTo begin, configure the Docker daemon to utilize a registry mirror, which accelerates image downloads. Create the necessary configuration file:sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon. <<-'EOF'
{
"registry-mirrors": ["https://docker.mirrors.ustc.edu.cn"]
}
EOFApply the changes by reloading t ...
Posted on Thu, 02 Jul 2026 17:14:38 +0000 by gijs
Deploying a Browser-Based Development Environment with Code-Server
Code-server brings the full power of Visual Studio Code to any machine accessible via a web browser. By shifting the IDE from a local desktop client to a server-side instance, it enables developers to maintain a consistent coding environment regardless of their local hardware or operating system.
Key Advantages
Portability: By decoupling the e ...
Posted on Thu, 02 Jul 2026 16:55:44 +0000 by ungovernable
ClickHouse Docker Deployment and Spring Boot Integration Guide
Docker Deployement Configuration
ClickHouse can be easily deployed using Docker. The following configuration covers the essential setup including network ports, storage volumes, and security parameters.
Basic Container Launch
docker run -d \
--name=clickhouse-server \
-e CLICKHOUSE_ADMIN_PASSWORD=secure_password \
--ulimit nofile=262144:2 ...
Posted on Wed, 01 Jul 2026 18:05:37 +0000 by jackie11
From Isolated Containers to Orchestrated Clusters: Scaling Application Deployments
The lifecycle of modern software delivery typically follows a predictable trajectory: initial local development transitions to isolated containerization, then to declarative orchestration, and eventually to managed cluster ecosystems. Understanding this progression requires examining the practical limitations of each stage and the architectural ...
Posted on Wed, 01 Jul 2026 17:46:57 +0000 by NightFalcon90909
Creating a Docker Image for a Java JAR Application
Docker enables developers to package applications along with their dependencies into portable containers. This approach simplifies deployment across different environments. A common use case involves containerizing a Sprinng Boot or other Java application packaged as an executable JAR file.
Prerequisites
An executable .jar file (e.g., myapp.ja ...
Posted on Tue, 30 Jun 2026 17:58:12 +0000 by yankeefan238
Installing Docker on CentOS 7 and Understanding Image Layers
This guide covers setting up Docker on CentOS 7 and explains how Docker images work internally.
System Requirements
CentOS 7 requires a kernel version of 3.10 or higher.
Installation Steps
1. Check Current Kernel Version
uname -r
2. Update All Packages
Ensure all existing packages are updated to their latest versions:
yum -y update
You can mo ...
Posted on Mon, 29 Jun 2026 16:39:17 +0000 by devilincarnated
Docker Fundamentals: A Comprehensive Guide
For this guide, we'll be using CentOS 7 as our base operating system.
Step 1: Remove Old Docker Versions
sudo yum remove docker \
docker-client \
docker-client-latest \
docker-common \
docker-latest \
docker-latest-logrotate \
docker-logr ...
Posted on Sun, 28 Jun 2026 17:15:25 +0000 by pieychpi
Creating Custom Foundational Docker Images
CentOS 7 Base ImageNetwork restrictions and misaligned configurations in public repositories make custom base images essential for streamlined workflows. Four configuration assets are required for this build.[root@host centos7]$ ls
custom-epel.repo custom-base.repo Dockerfile supervisord.cfg
DockerfileFROM centos:7.9.2009
LABEL maintainer="D ...
Posted on Sat, 27 Jun 2026 16:19:00 +0000 by teng84