Deploying KingbaseES Standalone Instances Using Docker Compose

Acquiring and Loading the Image When deploying KingbaseES (KES) in a standalone environment, utilizing Docker significantly streamlines the process compared to traditional command-line installations. As the official Docker Hub does not currently host a public KES image, the installation package must be downloaded from the official website as a ...

Posted on Sun, 20 Sep 2026 16:30:15 +0000 by TheIceman5

Launching Kali Linux in Docker for Security Testing Workflows

Running Kali Linux inside a lightweight container is a quick way to spin up a disposable penetration-testing lab. The steps below show how to provsiion the distribution with Docker Compose, map useful ports, and persist your tools and findings on the host. Prerequisites A Linux host with sudo access (Ubuntu 22.04 is used in the examples). Outb ...

Posted on Mon, 31 Aug 2026 16:50:16 +0000 by Aybabtu

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

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

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-Based ChirpStack LoRaWAN Network Server Deployment

ChirpStack Architecture and Components ChirpStack provides an open-source LoRaWAN network server stack suitable for both private and public deployments. It exposes gRPC and REST APIs for external integrations and offers a web-based management console. The ecosystem relies on several distinct microservices: LoRaWAN Network Server: Manages core ...

Posted on Thu, 06 Aug 2026 16:37:07 +0000 by merebel

Understanding and Implementing Docker Containers

Core Concepts What is Docker? Traditional virtualization relies on virtual machines, which solve cross-platform compatibility issues but are often too resource-intensive, slow to start, and demanding in terms of system resources. This limited their widespread adoption in the internet industry. Docker's container technology, while not fully cros ...

Posted on Sat, 01 Aug 2026 16:48:30 +0000 by Firestorm ZERO

Declarative Local Stack: INFINI Console and Easysearch with Docker Compose

After manually spinning up INFINI Console (1.29.6) and Easysearch (1.13.0) containers in the previous walkthrough, the next logical step is to replace the long docker run incantations with a single, version-controlled YAML file. Docker Compose turns the whole setup into a reproducible, one-command operation while keeping every byte of state on ...

Posted on Tue, 28 Jul 2026 16:20:25 +0000 by andybrooke

Building a Logging System with Docker, Elasticsearch, Logstash, and Kibana

Overview This guide walks through setting up a centralized logging system using the ELK stack (Elasticsearch, Logstash, Kibana) with Docker Compose. The configuration collects appliaction logs, processes them via Logstash, stores them in Elasticsearch, and visualizes them in Kibana. 1. Define the docker-compose.yaml File Create a docker-compose ...

Posted on Tue, 28 Jul 2026 16:10:51 +0000 by XiaoRulez

Setting Up an LNMP Stack with Nginx, PHP, MySQL, and phpMyAdmin Using Docker Compose

Why Use Docker Compose? While its possible to manually run individual containers for Nginx, PHP, and MySQL, managing them becomes tedious when configuration changes are needed. Without an orchestration tool, updating a setting requires stopping the container, removing it, and running a new docker run command with the updated parameters. Docker ...

Posted on Sat, 06 Jun 2026 16:25:59 +0000 by R0CKY