Fading Coder

One Final Commit for the Last Sprint

Docker Installation and Mirror Configuration

Switching to Root User su Removing Previous Docker Versions If Docker is already installed on the system, first remove the existing version: yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker-logrotate \ docker-engine Configuri...

Docker Fundamentals: Installation, Image Management, and Container Operations

Docker packages applications along with their runtime dependencies into portbale, isolated units—enabling consistant execution across environments. Its architecture draws inspiration from physical containerization: each container opeartes independently, with strict process and filesystem boundaries...

Deploying Local Ollama-Chat Service via FRP Reverse Proxy

The core challenge is exposing a locally running large model service (openui-backend-go) to the public internet through a low-spec cloud server, enabling external access via a custom domain. Technical Architecture FRP (Fast Reverse Proxy) is used for reverse proxy tunneling. The setup involves a pub...

Docker Deployment and Management Fundamentals

Prerequisites and Installation Verify system requirements before procedeing. Docker Engine relies on specific kernel features (Linux 3.10+ for Centos 7). Environment Verification # Check kernel version uname -r # Confirm OS details cat /etc/os-release Setup Process Access the official documentation...

Locating and Pulling Specific MySQL Images from Docker Hub

Locating a MySQL image in the Docker registry begins with a filtered search to distinguish official repositories from third-party forks: docker search mysql \ --filter "is-official=true" \ --filter "stars=1000" \ --no-trunc The --filter flags limit results to verified, highly-use...

Deploying Apache Tomcat Workloads on Docker Hosts

Package Management For RHEL and CentOS systems, invoke the package manager: yum install docker -y Debian and Ubuntu distributions utilize the following commands: apt-get update && apt-get install docker.io -y Resolving Dependency Locks If installation halts due to repository conflicts, ident...

Understanding Docker: From Fundamentals to Practical Usage

Docker emerged to solve the long-standing problem of environment inconsistency between development and operations. For example, a application developed on Windows may behave differently when deployed on Linux. Docker addresses this by packaging applications along with their runtime environments into...

Deploying Elasticsearch, Kibana, and Logstash Using Docker

Create a dedicated Docker network for the stack: docker network create elk-net Elasticsearch Pull an image (example uses 8.11.1; adjust if desired): docker pull docker.elastic.co/elasticsearch/elasticsearch:8.11.1 olenames for configuration and plugins. First, start a temporary container to extract...

GPU Accelerated Video Processing with FFmpeg and OpenCV 4.8 in CUDA-Enabled Docker Containers

Building a high-performance video processing environment involves integrating CUDA 12.0, cuDNN 8, and the NVIDIA Video Codec SDK with FFmpeg and OpenCV. This configuration enables hardware-accelerated decoding and encoding directly within a containerized environment. Docker Container Configuration T...

Mounting USB Devices in a Docker Ubuntu Container on Windows

Overview This process enables a Docker container running Ubuntu to access USB peripherals connected to the Windows host system, a common requirement for device-dependent software development and debugging. Prerequisites Docker Desktop for Windows installed and running. The official Ubuntu container...