Fading Coder

One Final Commit for the Last Sprint

Building and Customizing Docker Images with Dockerfile

A Dockerfile is a script comprising commands and parameters used to assemble a Docker image. The creation workflow involves: Writing a Dockerfile. Using docker build to produce an image. Running the image via docker run. Optionally distributing it with docker push to a registry such as DockerHub or...

Docker Installation on Ubuntu and Essential Commands Guide

Installing Docker on Ubuntu Updating apt package index sudo apt-get update Installing dependencies for HTTPS-based repositories sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common Adding Docker's official GPG key curl -fsSL https://download.docker.com/lin...

Building a Custom Alpine-Based LNP Stack Docker Image

To create a lightweight Docker image based on Alpine Linux that includes Nginx and PHP-FPM (an LNP stack), start by defining a base PHP layer. For compatibility with legacy applications, use PHP 5.6 on Alpine 3.3: # php5.dockerfile FROM alpine:3.3 ENV TIMEZONE=Asia/Shanghai \ PHP_MEMORY_LIMIT=512M \...

Deploying and Managing Local Large Language Models with Ollama

Ollama functions as a streamlined framework designed to facilitate the deployment of Large Language Models (LLMs) within containerized environments. By bundling model weights, configuration parameters, and data into a unified package known as a Modelfile, it abstracts away complex setup procedures i...

Docker Fundamentals: Core Command Line Operations

Inspecting Resources Viewing Image Repositories Retrieve a list of all image objects available locally. docker images --all Monitoring Active Containers List currently running instances to verify status and obtain identifiers. docker ps -a The output displays the Container ID in the first column, wh...

Running Rancher Server with Docker Containerization

System Requirements and Environment Verification Before deploying Rancher, verify the host system specifications to ensure compatibility. Operating System Check cat /proc/version Linux version 3.10.0-957.21.3.el7.x86_64 (mockbuild@kbuilder.bsys.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-...

Deploying a Multi-Primary and Replica MySQL Architecture via Docker

Network Topology and Port Allocasion Node Role Host IP Mapped Port Primary-A 192.168.153.19 3321 Replica-A 192.168.153.19 3322 Primary-B 192.168.153.19 3323 Replica-B 192.168.153.19 3324 Directory Initialization and Image Retrieval Execute the following shell commands to fetch the database image and...

Installing Elasticsearch and Kibana with Docker

1. Begin by pulling the required container images: </div>2\. Create directories for volume mounting: <div>```bash sudo mkdir -p /opt/elasticsearch/config sudo mkdir -p /opt/elasticsearch/data sudo mkdir -p /opt/elasticsearch/plugins </div>4\. Launch the Elasticsearch container with...

Deploying Multi-Container Applications with Docker Compose

Introduction to Docker Compose Docker Compose is a tool designed for defining and running applications that require multiple Docker containers. Instead of managing each container individually through the CLI, you describe your entire application stack in a configuration file. With a docker-compose.y...

Building a gRPC Service with Hyperf 3

Developing gRPC services within a Hyperf 3 application typically involves setting up a suitable environment, defining protocol buffers, generating code, and implementing both server and client components. For optimal setup and to avoid potential dependency conflicts, especially concerning GCC versio...