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

From Docker Compose to Kubernetes with Kompose

Kompose is a CLI utility that translates docker-compose.yml files into native Kubernetes objects such as Deployments, Services, and PVCs. It eliminates the manual work of rewriitng Compose declarations into YAML manifests. Installation # Linux curl -L https://github.com/kubernetes/kompose/releases/latest/download/kompose-linux-amd64 -o kompose ...

Posted on Tue, 19 May 2026 13:42:49 +0000 by clarket

Automating Multi-Container Applications with Docker Compose

Overview Docker Compose is an official tool designed to simplify the management and orchestration of multi-container Docker applications. It allows developers to define a stack of services in a single configuration file and control them with minimal commands. Core Concepts Service: An individual container instance running a specific image (e.g ...

Posted on Sat, 16 May 2026 00:41:35 +0000 by theorok

Getting Started with Docker Compose for Multi-Container Apps

Installation on Linux Download the latest stable binary direct from the project's GitHub repository. Use the following command, which automatically detects your operating system and architecture: curl -L "https://github.com/docker/compose/releases/download/v2.24.5/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compos ...

Posted on Sun, 10 May 2026 18:07:09 +0000 by jennatar77