Building Middleware Docker Images: PHP-FPM with Nginx
Having established a base CentOS 7 image, the next step is to construct middleware images. This example demonstrates building a Docker image that integrates Nginx and PHP-FPM.
The project structure is as follows:
docker-training/
├── centos7/
├── mysql/
├── php-fpm/
│ ├── Dockerfile
│ ├── nginx_default.conf
│ ├── nginx_nginx.conf
│ ├── ...
Posted on Fri, 29 May 2026 22:51:44 +0000 by esscher
Deploying a Single-Node Kubernetes Cluster with kubeadm
Prerequisites
Before starting, ensure you're machines meet these requirements:
One or more machines running CentOS 7.x (x86_64)
Hardware: minimum 2GB RAM, 2 CPUs, 30GB disk space
Network connectivity between all machines
Internet access for pulling container images
Swap disabled
Objectives
Install Docker and kubeadm on all nodes
Initialize t ...
Posted on Fri, 29 May 2026 21:10:42 +0000 by phrozenflame
Automated Price Intelligence: AI-Powered Web Scraping for E-commerce Comparison
E-commerce pricing volatility creates significant challenges for identifying optimal purchase timing. Manual price tracking proves inefficient, while traditional scraping methods struggle with dynamic content and structural changes across retail platforms. This guide demonstrates implementing an intelligent price monitoring solution using AI-dr ...
Posted on Fri, 29 May 2026 17:55:24 +0000 by hobojjr
Installing Docker on Ubuntu: Complete Setup Guide
Docker Installation on Ubuntu
This guide covers two methods for installing Docker Engine on Ubuntu systems: the automated script approach and the manual repository configuration.
Method 1: Automated Installation Script
The fastest way to install Docker is using the official convenience script with a mirror for better download speeds:
curl -fsSL ...
Posted on Wed, 27 May 2026 23:22:48 +0000 by stepn
Deploying Swagger Editor with Docker on Linux and Enabling Remote Collaboration Without Public IP
Deploy Swagger Editor with Docker
Docker simplifies deployment by handling dependencies automatically. Begin by pulling the Swagger Editor image from the Docker registry.
docker pull swaggerapi/swagger-editor
Launch the container, mapping its internal port 8080 to a host port of your choice, such as 8088.
docker run -p 8088:8080 -d swaggerapi/ ...
Posted on Wed, 27 May 2026 22:07:19 +0000 by AV
Docker Container & Image Management Reference Guide
Architectural Overview
In conatinerization, an image functions as an immutable blueprint, analogous to a compiled class definition in object-oriented languaegs. A container represents an active, isolated runtime instance derived from that blueprint. Grasping this relationship is essential for orchestrating reproducible application environments. ...
Posted on Mon, 25 May 2026 19:00:16 +0000 by pliant
Implementing CI/CD on Kubernetes with Jenkins Dynamic Agents
CI/CD Workflow Overview
Transitioning from traditional virtual machine-based CI/CD to a Kubernetes-native approach offers significant advantages in resource utilization and environment consistency.
Traditional Workflow:
CI: Developers push code to GitLab -> Jenkins triggers build on a static slave -> Code scanning and compilation -> A ...
Posted on Mon, 25 May 2026 18:24:34 +0000 by algarve4me
Offline Installation of Docker CE 18.06 on CentOS 7
Package Acquisition
====================
Download the static binary archive for Docker CE 18.06.3 compatible with x86_64 systems:
wget https://download.docker.com/linux/static/stable/x86_64/docker-18.06.3-ce.tgz
Ensure the version aligns with Kubernetes compatibility requirements — versions prior to 18.06 may lack critical features or exhibi ...
Posted on Mon, 25 May 2026 16:53:39 +0000 by digitalgod
Installing Kubernetes with kubeadm Using Vagrant
Setting Up a Kubernetes Cluster with kubeadm
Infrastructure Overview
We will create a Kubernetes cluster using Vagrant. The environment consists of three CentOS-based virtual machines:
Hostname
IP Address
master1
192.168.33.11
node1
192.168.33.12
node2
192.168.33.13
Vagrantfile Configuration
Below is the Vagrantfile used to define ...
Posted on Thu, 21 May 2026 20:42:59 +0000 by programmingjeff
Resolving Docker Daemon Socket Connection Errors on Ubuntu
When the Docker client attempts to reach the daemon through the local Unix socket at /var/run/docker.sock, the server may be unresponsive even if the service appears configured. Initial attempts to launch the daemon through the system's service manager fail immediately:
admin@node-01:~$ sudo systemctl start docker
Job for docker.service failed ...
Posted on Thu, 21 May 2026 17:57:03 +0000 by Frapster