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
Everyday Docker Commands Reference
The docker run instruction is the quickest way to spin up a new container from an image. For instance, to print a greeting and exit:
docker run debian:11-slim /bin/echo "Hello container"
The command above instructs Docker to:
Locate the debian:11-slim image locally; if missing, pull it from Docker Hub.
Create a transient container f ...
Posted on Mon, 03 Aug 2026 16:41:40 +0000 by Homer30
Deploying Zabbix Using Docker
docker run --name mysql-server -t \
-v /data/mysql/data:/var/lib/mysql \
-e MYSQL_DATABASE="zabbix" \
-e MYSQL_USER="zabbix" \
-e MYSQL_PASSWORD="123456" \
-e MYSQL_ROOT_PASSWORD="123456" \
--restart=unless-stopped \
-p 3306:3306 \
-d mysql:8.0 \
--character-set-server=utf8 --collation-s ...
Posted on Sat, 01 Aug 2026 16:18:47 +0000 by Remote4ever
Building Custom Docker Images with Dockerfile Syntax
A Dockerfile is a plain-text recipe that defines how to assemble a Docker image. It consists of a series of instructions executed sequentially by the docker build command. Rather than manually configuring containers, Dockerfiles enable reproducible, version-controlled, and automated image creation.
Below is a modernized Redis Dockerfile example ...
Posted on Wed, 29 Jul 2026 16:35:44 +0000 by Mad_Mike
Deploying a Highly Available Redis Sentinel Cluster with Docker
Redis Sentinel Architecture OverviewRedis Sentinel provides a robust high-availability solution for Redis instances. Unlike Redis Cluster, which handles data sharding across multiple masters, Sentinel focuses on monitoring, notification, and automatic failover for a single master-slave topology. The system monitors master and slave instances, n ...
Posted on Sun, 26 Jul 2026 17:08:32 +0000 by Harley1979
Building Docker Images with Dockerfiles
Building Docker Images with Dockerfiles
A Dockerfile serves as a text document containing all the commands required to assemble a Docker image. The docker build command processes these instructions to create an executable image. You can specify a Dockerfile from any location in your filesystem using the -f flag with the docker build command.
...
Posted on Fri, 17 Jul 2026 17:27:25 +0000 by Naez
Deploying a Containerized Application on Kubernetes
To deploy an application on Kubernetes, developers must first create a container image. The image must then be organized into a format that Kubernetes can interpret, which is achieved by writing configuration files. These files, typically in YAML format, define the application's containers, parameters, and settings. Kubernetes emphasizes this d ...
Posted on Thu, 16 Jul 2026 17:06:02 +0000 by daria
Deploying Docker Engine on Ubuntu 20.04
Overview of Docker Containerization
Docker functions as an open-source platform designed for containerization, facilitating the build, test, and deployment processes. Applications are packaged into movable containers that include all necessary dependencies, ensuring consistent execution across different environments. This technology is integral ...
Posted on Sun, 12 Jul 2026 16:24:14 +0000 by rmbarnes82
Installing Docker on Ubuntu 22.04 Systems
Docker enables containerization of applications with their dependencies, providing a standardized deployment environment. This guide covers the installation process on Ubuntu 22.04.
System Update
Begin by updating the package repository and upgrading existing packages:
sudo apt update
sudo apt full-upgrade -y
Install Required Dependencies
Add ...
Posted on Sun, 12 Jul 2026 16:20:15 +0000 by nca