Setting Up Nvidia Docker with GPU Support on CentOS 7
Environment Configuration
This guide covers the complete setup for running GPU-accelerated Docker containers on CentOS 7 using Nvidia drivers and CUDA.
System Specifications:
Operating System: CentOS 7.4 (1708)
GPU: Nvidia GeForce GTX 1080 Ti
Required Components
Docker CE repository
Nvidia Docker repository
CUDA package repository
cuDNN libr ...
Posted on Sat, 29 Aug 2026 16:27:28 +0000 by jhuaraya
Deploying a Private Docker Registry with Docker-Registry and Web UI
🚀 Docker Registry + Web UI Private Image Repository Deployement Guide
docker-registry is an official lightweight private Docker image registry. Paired with docker-registry-ui, it provides a web interface suitable for individuals or small teams.
📌 1. Environment Requirements
Operating System: Linux (CentOS 7+, Ubuntu 20.04+, Rocky Linux 9+)
C ...
Posted on Sat, 29 Aug 2026 16:22:41 +0000 by runnerjp
Deploying Signal Group Voice and Video Calling Service
Signal's calling service enables group voice and video functionality. This guide covers the deployemnt of the calling servicce components using Docker.
Server Components
The calling service consists of four main components deployed via Docker Compose:
services:
database:
image: "docker.1ms.run/amazon/dynamodb-local:2.5.4"
co ...
Posted on Sat, 29 Aug 2026 16:20:32 +0000 by yujikaido
Container Orchestration with Docker Compose
Overview of Docker Compose
Docker Compose is an orchestration tool provided by Docker for managing multi-container applications. It uses a YAML file to define services, networks, and volumes, allowing developers to launch and manage complex environments with a single command. This is especially useful in development, testing, and staging enviro ...
Posted on Sat, 29 Aug 2026 16:13:12 +0000 by apw
Setting Up Jenkins with Docker for CI/CD Pipelines
Jenkins Installation
This guide covers Jenkins deployment using Docker with Blue Ocean UI, including configuration of build tools and private registry integration.
Docker Setup for Jenkins
Create required directories and start the Jenkins container:
mkdir -p ~/jenkins/jenkins_home
mkdir -p ~/jenkins/build_tools
chmod -R 777 ~/jenkins
docker ru ...
Posted on Sat, 29 Aug 2026 16:14:05 +0000 by ihenman
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
Container Security Best Practices and Essential Tools
Container Security Best Practices and Essential Tools
Understanding Container Security
Container security encompasses the measures and strategies designed to protect containerized applications and infrastructure from potential threats and attacks. Containerization technologies like Docker and Kubernetes enable applications to run in isolated en ...
Posted on Fri, 28 Aug 2026 16:31:25 +0000 by quicknik
Installing Docker on CentOS 7 with Common Pitfalls and Solutions
System Requirements Verification
Verify Linux system parameters before Docker installation:
cat /etc/redhat-release
uname -r
Environment Preparation
Install essential packages if not present:
yum -y install gcc gcc-c++
Docker Removal (For Fresh Install)
Stop and remove existing Docker installations:
systemctl stop docker
yum remove docker doc ...
Posted on Tue, 25 Aug 2026 16:37:42 +0000 by Stressed
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
Deploying a Multi-Node Kubernetes Cluster with Kubeadm
Infrastructure Requirements
Before initiating the deployment, ensure your environment meets the following specifications:
Operating System: CentOS 7.x (64-bit).
Hardware: Minimum 2 CPUs, 2GB RAM, and 30GB disk space.
Connectivity: Full network interoperability between all nodes and internet access for image retrieval.
System State: Swap must b ...
Posted on Sun, 23 Aug 2026 16:25:06 +0000 by fatepower