Practical Docker Deployment, Container Management, and Service Orchestration
Registry Mirror Configuration
When pulling images from public registries experiences latency, configuring local or regional mirrors in the Docker daemon configuration significantly accelerates transfer speeds. The primary configuration file resides at /etc/docker/daemon.json.
{
"registry-mirrors": [
"https://mirror.region-e ...
Posted on Mon, 21 Sep 2026 16:11:12 +0000 by cuteflower
Creating Efficient Docker Images with Dockerfile
Understanding Dockerfile Basics
Docker builds images by reading instructions from a Dockerfile, similar to how Make uses Makefiles to compile projects in C development.
A Dockerfile contains specific formatting instructions that Docker follows to assemble application images. The official documentation is available at docs.docker.com
Commands i ...
Posted on Fri, 11 Sep 2026 16:36:57 +0000 by dank
Offline Installation of Docker CE on KylinOS V10
Installing Docker CE on air-gapped KylinOS V10 (aarch64) systems requires a binary-based deployment. Follow the steps below to manually configure the daemon and its dependencies.
1. Acquire Binary Distribusion
Download the official static binary package for the ARM64 architecture:
mkdir -p /opt/docker_install
wget https://mirrors.ustc.edu.cn/do ...
Posted on Tue, 08 Sep 2026 16:22:46 +0000 by elum.chaitu
Understanding Docker and Containerization Fundamentals
Virtualization Concepts
Virtualization is a resource management technology that abstracts physical computing hardware—such as servers, memory, network, and storage—into logical resources. By decoupling the software environment from the underlying physical infrastructure, users can achieve greater efficiency and flexibility. In production enviro ...
Posted on Sun, 06 Sep 2026 16:29:17 +0000 by Telemachus
Understanding and Implementing Docker Volumes for Data Persistence
Docker's core philosophy involves packaging applications and their environments into containers. While containers facilitate the execution of applications, the data generated within them is typically ephemeral. Without explicit measures, this data is lost when the container is removed. Docker addresses this by introducing volumes, which serve a ...
Posted on Sun, 06 Sep 2026 16:13:02 +0000 by ltoso
Deploying a Single-Node Apache Mesos Cluster Using Docker
This guide outlines the process for deploying a functional single-node Apache Mesos cluster using Docker containers. The architecture consists of four primary components: a ZooKeeper instance for coordination, a Mesos Master for resource management, a Marathon framework for orchestration, and a Mesos Agent to execute tasks.
Prerequisites
Insure ...
Posted on Wed, 02 Sep 2026 16:20:24 +0000 by georgeoc
Practical Docker Deployment and Configuration Guide
Deploying GitLab
To set up a GitLab instance with persistent storage, first create the necessary directory structure on the host machine to hold configuration, logs, and data.
sudo mkdir -p /srv/gitlab/config
sudo mkdir -p /srv/gitlab/logs
sudo mkdir -p /srv/gitlab/data
Launch the GitLab container using the official Community Edition image, ...
Posted on Sun, 30 Aug 2026 16:15:52 +0000 by Ekate
Container Orchestration with Docker Compose
Overview of Docker Compose
Docker Compose is an orchestration tool provided by Docker for managing multi-container applications. It uses a YAML file to define services, networks, and volumes, allowing developers to launch and manage complex environments with a single command. This is especially useful in development, testing, and staging enviro ...
Posted on Sat, 29 Aug 2026 16:13:12 +0000 by apw
Deploying MySQL and Redis with Docker Compose
First, ensure that Docker and Docker Compose are already installed on your server.
Setting Up Docker Environment
1. Install Docker Dependencies
yum install -y yum-utils device-mapper-persistent-data lvm2
2. Configure Docker Repository
yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
3. Install D ...
Posted on Sat, 29 Aug 2026 16:04:21 +0000 by Eclectic
Installing Docker on CentOS 7 with Common Pitfalls and Solutions
System Requirements Verification
Verify Linux system parameters before Docker installation:
cat /etc/redhat-release
uname -r
Environment Preparation
Install essential packages if not present:
yum -y install gcc gcc-c++
Docker Removal (For Fresh Install)
Stop and remove existing Docker installations:
systemctl stop docker
yum remove docker doc ...
Posted on Tue, 25 Aug 2026 16:37:42 +0000 by Stressed