Docker Configuration and Command Reference Guide
Docker Configuration and Command Reference Guide
This guide covers essential Docker configuration settings and commonly used commands for managing images, containers, networks, and volumes.
Configuring Docker Registry Mirrors
If you experience slow or restricted access to Docker's official registries due to network conditions (common in certain ...
Posted on Sun, 23 Aug 2026 16:52:33 +0000 by trawets
How Docker Images, Containers, and Registries Work Together
Docker architecture revolves around three primitives: images, containers, and registries. An image provides an immutable filesystem template that bundles application binaries, system libraries, and configuration metadata. A registry functions as a storage and distribution layer for these templates. A container represents an ephemeral, isolated ...
Posted on Fri, 21 Aug 2026 16:54:27 +0000 by lynosull
Essential Docker Image Operations
Docker revolutionized application deployment by providing a robust and convenient packaging mechanism. This system encapsulates an application along with its complete runtime environment, including the operating system, ensuring consistent execution across development and production environments. This eliminates the complexities of environmenta ...
Posted on Thu, 20 Aug 2026 16:43:06 +0000 by vichiq
Understanding and Building Custom Images with Dockerfiles
What is a Dockerfile?
A Dockerfile is a script consisting of a series of instructions and arguments used to automate the creation of a Docker image.
The Three-Step Build Process
Create the Dockerfile: Define the build logic in a text file.
Build the Image: Execute docker build to create the image from the file.
Run the Container: Launch the in ...
Posted on Sun, 16 Aug 2026 16:11:10 +0000 by ThYGrEaTCoDeR201
Developing and Deploying Flask Applications with Docker Compose
Flask Application Setup with Docker Compose
Project File Structure:
project_root/
|-- src/
| |-- main.py
| |-- requirements.txt
|-- Dockerfile
|-- docker-compose.yaml
main.py (Flask Application):
from flask import Flask
web_application = Flask(__name__)
@web_application.route('/')
def index():
return 'Flask application running inside ...
Posted on Fri, 14 Aug 2026 16:42:25 +0000 by coppercoins
Dockerfile Reference Guide
Dockerfile Commands Overview
Dockerfiles are text-based scripts that define how to build Docker images. Below is a comprehensive reference of essential Dockerfile instructions.
Core Instructions
ARG variable_name[=default_value]
# Defines build-time variables accessible via --build-arg during docker build
FROM base_image[:tag] [@digest] [AS bu ...
Posted on Thu, 13 Aug 2026 16:45:24 +0000 by watts
Docker Engine and Compose Installation on CentOS 7 with Mirror Optimization
Yum Repository Configuration
Update the package manager to utilize accelerated mirrors. Preserve the existing configuration before modifications:
cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
Fetch the updated repository definition:
curl -fsSL -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Cen ...
Posted on Fri, 07 Aug 2026 16:21:12 +0000 by ShanesProjects
Docker Fundamentals: Architecture, CLI Operations, and Production Deployment Strategies
Architectural Overview and Evolution
The primary challenge in traditional software delivery lies in environment inconsistency. Development occurs on local workstations, while production runs on isolated infrastructure. Synchronizing dependencies across multiple machines becomes increasingly complex as stacks grow. Docker resolves this by packag ...
Posted on Thu, 06 Aug 2026 16:21:57 +0000 by progwihz@yahoo.com
Deploying a Containerized LNMP Stack and Private Registry with Docker
Provisioning the Docker Engine on CentOS
To begin, install the necessary utilities and configure the repository for the Docker Community Edition.
# Install required utilities
yum install -y yum-utils
# Add the official Docker repository
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
# Install the engine
...
Posted on Wed, 05 Aug 2026 16:51:27 +0000 by PDP11
Deploying SkyWalking Using Docker Compose
Docker Installation
Reefrence: https://www.cnblogs.com/a120608yby/p/9883175.html2. Docker Compose Installation
Reference: https://www.cnblogs.com/a120608yby/p/14582853.html3. Service Configuraton
# edit docker-compose.yml
version: '3.8'
services:
es:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.4.2
container_name: es
...
Posted on Wed, 05 Aug 2026 16:45:43 +0000 by glory452