Tagged articles
2370 articles
Page 20 of 24
Programmer DD
Programmer DD
Feb 20, 2020 · Fundamentals

Learn Vim Commands by Playing PacVim – A Fun Docker‑Ready Game

This article introduces PacVim, a game that turns Vim command learning into an interactive experience, explains its origin, showcases its gameplay, and provides simple Docker and Homebrew commands so developers can quickly start practicing Vim shortcuts while having fun.

DockerGame-based LearningHomebrew
0 likes · 4 min read
Learn Vim Commands by Playing PacVim – A Fun Docker‑Ready Game
Open Source Linux
Open Source Linux
Feb 19, 2020 · Cloud Native

Step-by-Step Guide to Installing Docker on CentOS, Ubuntu, and Windows

This comprehensive tutorial walks you through uninstalling old Docker versions, setting up repositories, installing Docker Engine, and verifying the installation on CentOS, Ubuntu 14.04/16.04, and Windows (including Docker Toolbox for Win7/8 and Docker Desktop for Win10), with all necessary commands and screenshots.

CentOSContainerizationDocker
0 likes · 6 min read
Step-by-Step Guide to Installing Docker on CentOS, Ubuntu, and Windows
Open Source Linux
Open Source Linux
Feb 19, 2020 · Cloud Native

What Is Docker? A Deep Dive into Its Architecture and Core Concepts

This article explains Docker’s origins from LXC, its relationship with Linux containers, core components such as images, containers, and registries, compares Docker with traditional VMs, and details the internal architecture including client, daemon, server, engine, jobs, drivers, and libcontainer.

ContainerizationDevOpsDocker
0 likes · 18 min read
What Is Docker? A Deep Dive into Its Architecture and Core Concepts
Alibaba Cloud Native
Alibaba Cloud Native
Feb 14, 2020 · Cloud Native

How Kubernetes Schedules Pods and Secures API Access: A Hands‑On Deep Dive

This article walks through building a simple Go web service, containerizing it, pushing the image to a registry, and then exploring how Kubernetes API Server authenticates clients with mutual TLS and how the scheduler’s pre‑filter and scoring phases decide the optimal node for a pod, complete with code snippets and log analysis.

API ServerDockerGo
0 likes · 16 min read
How Kubernetes Schedules Pods and Secures API Access: A Hands‑On Deep Dive
Efficient Ops
Efficient Ops
Feb 11, 2020 · Cloud Native

Master Docker: From Basics to Advanced Container Management

This comprehensive guide explains Docker’s core concepts, advantages over traditional VMs, architecture, essential components, installation steps, common commands, Dockerfile syntax, storage handling, networking modes, and practical examples, providing developers and ops engineers with a solid foundation for container‑based workflows.

ContainerDevOpsDocker
0 likes · 23 min read
Master Docker: From Basics to Advanced Container Management
MaGe Linux Operations
MaGe Linux Operations
Feb 10, 2020 · Cloud Native

Demystifying Docker: Understanding Images, Containers, and Core Commands

This article provides a comprehensive, step‑by‑step explanation of Docker’s architecture—including the differences between images, containers, and running containers—while detailing the underlying union file system and illustrating each Docker command with clear examples and diagrams.

Container LifecycleContainersDocker
0 likes · 14 min read
Demystifying Docker: Understanding Images, Containers, and Core Commands
Java High-Performance Architecture
Java High-Performance Architecture
Feb 10, 2020 · Backend Development

How to Monitor Spring Boot Apps with Prometheus and Grafana: Step‑by‑Step Guide

This tutorial walks through building a Spring Boot application, integrating Micrometer for metric collection, deploying Prometheus and Grafana via Docker, configuring dynamic service discovery, and creating custom request‑count metrics with AOP, providing a complete end‑to‑end monitoring solution.

DockerGrafanaMicrometer
0 likes · 15 min read
How to Monitor Spring Boot Apps with Prometheus and Grafana: Step‑by‑Step Guide
MaGe Linux Operations
MaGe Linux Operations
Feb 9, 2020 · Cloud Native

Master Docker & Jenkins: From Container Basics to Cloud‑Native CI/CD with K8s

This article walks through Docker’s architecture, acceleration tricks, containerization best practices, and a hands‑on DevOps workflow that uses Jenkins to build Docker images and deploy them to a Kubernetes cluster, highlighting practical tips for Chinese developers and cost‑effective cloud‑native operations.

Cloud NativeContainerizationDevOps
0 likes · 11 min read
Master Docker & Jenkins: From Container Basics to Cloud‑Native CI/CD with K8s
ITPUB
ITPUB
Feb 9, 2020 · Cloud Native

Understanding Docker: From LXC Roots to Modern Container Architecture

This article explains the fundamentals of Linux Containers (LXC), their relationship to Docker, Docker's core concepts, architecture components, and practical commands for installation, image management, container lifecycle, and troubleshooting, providing a comprehensive guide for developers and operations engineers.

ContainersDevOpsDocker
0 likes · 29 min read
Understanding Docker: From LXC Roots to Modern Container Architecture
360 Tech Engineering
360 Tech Engineering
Feb 4, 2020 · Backend Development

Gokeeper, Pepperbus, Peppercron, and Dashboard: Open‑Source Backend Services Overview and Deployment Guide

This article introduces Huajiao's open‑source backend services—gokeeper, pepperbus, peppercron, and dashboard—detailing their features, architecture, and step‑by‑step Docker‑based deployment, configuration, and usage with Go code examples for service discovery and distributed cron management.

BackendDockerGo
0 likes · 7 min read
Gokeeper, Pepperbus, Peppercron, and Dashboard: Open‑Source Backend Services Overview and Deployment Guide
NetEase Game Operations Platform
NetEase Game Operations Platform
Feb 1, 2020 · Operations

Practical Guide to GitLab CI/CD for Microservice Projects

This article presents a comprehensive practical guide on using GitLab's built‑in CI/CD features for microservice projects, covering pipeline, stage, job concepts, .gitlab-ci.yml configuration, runner installation, Docker image building, registry push, and deployment strategies, supplemented with code snippets and diagrams.

CI/CDDevOpsDocker
0 likes · 10 min read
Practical Guide to GitLab CI/CD for Microservice Projects
macrozheng
macrozheng
Jan 14, 2020 · Databases

How to Set Up MySQL Master‑Slave Replication in Docker (Step‑by‑Step Guide)

This article explains the principles of MySQL master‑slave replication and provides a detailed, step‑by‑step tutorial for configuring a master and a slave instance in a Docker environment, including configuration files, Docker commands, replication setup, testing, and troubleshooting.

DockerMaster‑SlaveReplication
0 likes · 9 min read
How to Set Up MySQL Master‑Slave Replication in Docker (Step‑by‑Step Guide)
Huajiao Technology
Huajiao Technology
Jan 14, 2020 · Backend Development

How to Deploy and Use Huajiao’s Open‑Source Gokeeper, Pepperbus, Peppercron & Dashboard

This guide introduces Huajiao Live’s newly open‑sourced backend components—Gokeeper for centralized configuration and service discovery, Pepperbus for message bus, Peppercron for distributed cron management, and the Dashboard UI—providing repository links, Docker images, installation steps, configuration formats, code examples, and operational details for quick deployment.

BackendConfiguration ManagementDocker
0 likes · 9 min read
How to Deploy and Use Huajiao’s Open‑Source Gokeeper, Pepperbus, Peppercron & Dashboard
NetEase Game Operations Platform
NetEase Game Operations Platform
Jan 11, 2020 · Operations

Best Practices for Writing Efficient Dockerfiles

This article presents a concise Dockerfile template, explains how to build efficient images by minimizing layers, leveraging caches, using multi‑stage builds, and addresses common pitfalls such as over‑caching, proper use of ARG/ENV, COPY vs ADD, and CMD/ENTRYPOINT configurations.

ContainerDevOpsDocker
0 likes · 12 min read
Best Practices for Writing Efficient Dockerfiles
ITPUB
ITPUB
Jan 9, 2020 · Fundamentals

Creative (and Extreme) Ways to Quit Vim: Commands, Scripts, and Docker Hacks

This guide collects a variety of unconventional methods—from simple kill commands and one‑liners to Docker container tricks and even humorous "power‑off" scripts—to force‑quit Vim, illustrating both practical shortcuts and tongue‑in‑cheek approaches for developers who struggle with the editor's exit commands.

DockerLinuxTutorial
0 likes · 7 min read
Creative (and Extreme) Ways to Quit Vim: Commands, Scripts, and Docker Hacks
Open Source Tech Hub
Open Source Tech Hub
Jan 1, 2020 · Cloud Native

What Is Docker? A Beginner’s Guide to Containers, Images, and Compose

This article explains Docker’s core concepts—including its client‑server architecture, communication via Unix sockets, main components, image creation with Dockerfile, and multi‑container orchestration using docker‑compose—providing a concise yet comprehensive introduction for newcomers to container technology.

Cloud NativeContainersDocker
0 likes · 6 min read
What Is Docker? A Beginner’s Guide to Containers, Images, and Compose
Cloud Native Technology Community
Cloud Native Technology Community
Dec 26, 2019 · Cloud Native

Building a Simple Tekton Pipeline on Kubernetes: Concepts, Resources, Tasks, and Execution

This article explains how to construct a basic Tekton CI/CD pipeline on Kubernetes, covering core concepts, required resources, task definitions, pipeline templates, secret and ServiceAccount setup, execution monitoring, and includes full YAML and shell code examples for building, testing, and deploying a container image.

DockerGitKubernetes
0 likes · 14 min read
Building a Simple Tekton Pipeline on Kubernetes: Concepts, Resources, Tasks, and Execution
Sohu Tech Products
Sohu Tech Products
Dec 25, 2019 · Cloud Native

Docker Basics, Architecture, Commands, and Deployment Practices

This article introduces Docker as a leading container platform, explains its core concepts, architecture components, and common commands, and provides step‑by‑step tutorials for deploying a Node.js application and MongoDB using Dockerfile, Docker Compose, and related tools.

ContainerizationDevOpsDocker
0 likes · 14 min read
Docker Basics, Architecture, Commands, and Deployment Practices
360 Zhihui Cloud Developer
360 Zhihui Cloud Developer
Dec 24, 2019 · Backend Development

How We Built a Scalable Apache APISIX Gateway on the 360 Platform

This article details the 360 team’s decision to adopt Apache APISIX for their gateway layer, describes the production architecture, containerized deployment steps, plugin development workflow, and operational metrics, providing a practical guide for building and managing a high‑performance API gateway.

Apache APISIXDockerPlugin Development
0 likes · 16 min read
How We Built a Scalable Apache APISIX Gateway on the 360 Platform
Programmer DD
Programmer DD
Dec 20, 2019 · Operations

Master Consul Service Discovery: Principles, Docker Setup, and Health Checks

This guide explains why service discovery is essential, details Consul's internal architecture, walks through building a Docker‑based Consul cluster, shows how to register services, query them via HTTP API or DNS, and covers health checks, deregistration, and alternative deployment patterns.

ConsulDockerMicroservices
0 likes · 20 min read
Master Consul Service Discovery: Principles, Docker Setup, and Health Checks
HomeTech
HomeTech
Dec 20, 2019 · Cloud Native

Practical Experience of Containerizing Java Applications: Docker, JVM Tuning, Multi‑Stage Builds, and Operational Tips

This article shares the 2019 cloud‑native migration experience of an e‑commerce team, covering Docker and Kubernetes basics, Java‑Docker compatibility, memory and CPU limits, log collection, JDK version choices, Dockerfile and multi‑stage build practices, health checks, graceful shutdown, and common pitfalls encountered during containerization.

ContainerizationDockerJVM
0 likes · 21 min read
Practical Experience of Containerizing Java Applications: Docker, JVM Tuning, Multi‑Stage Builds, and Operational Tips
UCloud Tech
UCloud Tech
Dec 19, 2019 · Cloud Native

Why Containers Matter: From Docker Basics to Kubernetes Orchestration

This lesson introduces container technology, explains Docker’s core concepts, image layering, Dockerfile syntax, and common commands, while also showing how Kubernetes scales container management for cloud‑native applications. It highlights the advantages over traditional VMs, resource utilization improvements, and practical examples for building and running container images.

Cloud NativeDevOpsDocker
0 likes · 10 min read
Why Containers Matter: From Docker Basics to Kubernetes Orchestration
HomeTech
HomeTech
Dec 19, 2019 · Cloud Native

Practical Experience of Containerizing Java Applications: Docker, Kubernetes, and Cloud‑Native Practices

This article shares the 2019 container‑migration experience of an e‑commerce team, covering Docker and Kubernetes fundamentals, Java‑specific memory and CPU limits, JDK version tuning, log collection, multi‑stage image builds, health‑check strategies, common pitfalls, and best‑practice recommendations for cloud‑native deployments.

Cloud NativeContainerizationDocker
0 likes · 22 min read
Practical Experience of Containerizing Java Applications: Docker, Kubernetes, and Cloud‑Native Practices
UCloud Tech
UCloud Tech
Dec 10, 2019 · Artificial Intelligence

Train and Deploy a CIFAR‑10 Image Classification Model with UAI Platform

This tutorial walks university students through the complete workflow of using the CIFAR‑10 dataset to train a convolutional neural network for image classification and then deploying the model as an online inference service on the UAI‑Train and UAI‑Inference platforms.

CIFAR-10Deep LearningDocker
0 likes · 6 min read
Train and Deploy a CIFAR‑10 Image Classification Model with UAI Platform
360 Quality & Efficiency
360 Quality & Efficiency
Dec 6, 2019 · Artificial Intelligence

Deploying YOLO V3 with TensorFlow Serving: Environment Setup, Model Conversion, Service Deployment, and Performance Comparison

This article explains how to prepare the Docker environment, install TensorFlow Serving (CPU and GPU versions), convert a YOLO V3 checkpoint to SavedModel, deploy the model as a service, warm‑up and manage versions, invoke it via gRPC and HTTP, and compare CPU versus GPU inference performance.

AIDockerGPU
0 likes · 9 min read
Deploying YOLO V3 with TensorFlow Serving: Environment Setup, Model Conversion, Service Deployment, and Performance Comparison
HomeTech
HomeTech
Nov 29, 2019 · Cloud Native

How a Used‑Car Business Achieved 100% Containerization in One Month

In just 30 days the used‑car division transformed its entire application portfolio from 3.33% to full containerization, cutting costs, speeding deployments, and handling 120 million daily requests, while sharing the practical lessons, challenges, and future goals learned from the journey.

Cloud NativeContainerizationDevOps
0 likes · 8 min read
How a Used‑Car Business Achieved 100% Containerization in One Month
Aikesheng Open Source Community
Aikesheng Open Source Community
Nov 25, 2019 · Databases

Installing and Configuring DBLE with Docker and MySQL

This tutorial demonstrates how to install DBLE using a Docker‑based MySQL environment, configure its XML templates to connect to two MySQL instances, start the DBLE service, and manage databases and tables through the DBLE console, including practical code examples.

ConfigurationDBLEDocker
0 likes · 7 min read
Installing and Configuring DBLE with Docker and MySQL
Alibaba Cloud Native
Alibaba Cloud Native
Nov 21, 2019 · Cloud Native

Latest Cloud Native Updates: Docker Sale, Kubernetes 1.18 Features, Top Projects

This newsletter covers Docker Enterprise’s acquisition by Mirantis, Red Hat’s open‑source registry launch, KubeCon North America details, key Kubernetes 1.17‑1.18 upstream changes such as PreSidecars, Kubectl v2, IP type split, hidden metrics, plus curated open‑source project and reading recommendations for cloud‑native practitioners.

DockerKubeConKubernetes
0 likes · 7 min read
Latest Cloud Native Updates: Docker Sale, Kubernetes 1.18 Features, Top Projects
WecTeam
WecTeam
Nov 19, 2019 · Backend Development

Master Nginx for Front‑End Developers: Quick Docker Setup & Essential Tricks

This guide introduces Nginx fundamentals, shows how to spin up a basic Nginx service with Docker‑Compose, explains HTTP, server and location contexts, and demonstrates practical front‑end‑friendly techniques such as forward proxy, load balancing, SSI, GZIP compression, anti‑hotlinking, HTTPS and caching.

DevOpsDockerNginx
0 likes · 20 min read
Master Nginx for Front‑End Developers: Quick Docker Setup & Essential Tricks
MaGe Linux Operations
MaGe Linux Operations
Nov 18, 2019 · Cloud Native

Step-by-Step Guide: Install CentOS, Docker CE, and Build a Kubernetes Cluster

This tutorial walks you through preparing a CentOS system, installing Docker CE, configuring Docker mirrors, setting up kubelet, kubeadm and kubectl packages, adjusting cgroup settings, initializing a Kubernetes master node, joining worker nodes, deploying Flannel networking, and troubleshooting common issues, all with exact command examples.

CentOSCluster SetupDocker
0 likes · 13 min read
Step-by-Step Guide: Install CentOS, Docker CE, and Build a Kubernetes Cluster
Java Captain
Java Captain
Nov 11, 2019 · Cloud Native

Docker Overview: From LXC Origins to Architecture and Basic Usage

This article introduces Linux Containers (LXC) as the predecessor of Docker, explains Docker's definition, advantages, and architecture—including client, daemon, server, engine, job, registry, graph, driver, libcontainer and container modules—and provides practical commands for installation, image management, container execution, and troubleshooting.

ContainerDockerLXC
0 likes · 27 min read
Docker Overview: From LXC Origins to Architecture and Basic Usage
Youzan Coder
Youzan Coder
Nov 6, 2019 · Cloud Native

How to Transform Jenkins Master‑Slave CI into a Scalable Kubernetes‑Based Architecture

This article explains the drawbacks of a traditional Jenkins master‑slave setup, outlines a Kubernetes‑driven CI/CD solution that dynamically provisions Jenkins slaves as pods, details the deployment of custom Jenkins and SonarQube Docker images, and covers related Kubernetes resources, web‑terminal integration, and tuning tips.

DockerIngressJenkins
0 likes · 12 min read
How to Transform Jenkins Master‑Slave CI into a Scalable Kubernetes‑Based Architecture
MaGe Linux Operations
MaGe Linux Operations
Nov 5, 2019 · Cloud Computing

Master Docker: From Basics to Advanced Container Management

This comprehensive guide introduces Docker, explains its core concepts such as images, containers, and registries, walks through installation on various platforms, demonstrates essential commands, shows how to build, run, and manage containers and images, and covers advanced topics like exporting, importing, and using web UI tools.

ContainersDockerImages
0 likes · 17 min read
Master Docker: From Basics to Advanced Container Management
Programmer DD
Programmer DD
Oct 30, 2019 · Information Security

Understanding Linux Capabilities: Fine‑Grained Root Privilege Management

This article explains how Linux capabilities replace the traditional SUID mechanism to provide fine‑grained root privilege control, detailing capability sets, inheritance rules, practical examples with ping and Docker, and a step‑by‑step formula for execve() behavior.

DockerKubernetesRoot Privileges
0 likes · 16 min read
Understanding Linux Capabilities: Fine‑Grained Root Privilege Management
Programmer DD
Programmer DD
Oct 28, 2019 · Operations

How to Deploy and Use Elastic APM for Full-Stack Performance Monitoring

This guide explains Elastic APM’s architecture—including agents, server, Elasticsearch, and Kibana—provides step‑by‑step instructions for deploying the APM server with Docker, configuring it, installing agents for various languages, and visualizing performance data in Kibana, enabling developers to monitor and troubleshoot application latency and errors.

DockerElasticsearchKibana
0 likes · 7 min read
How to Deploy and Use Elastic APM for Full-Stack Performance Monitoring
Programmer DD
Programmer DD
Oct 20, 2019 · Cloud Native

How to Quickly Set Up Kong API Gateway and Konga UI with Docker

This guide walks you through installing Kong API gateway and its open‑source management UI Konga using Docker, covering network creation, database selection, container configuration, migration, verification, and final UI access, all with clear commands and examples.

ContainerDockerKong
0 likes · 9 min read
How to Quickly Set Up Kong API Gateway and Konga UI with Docker
Alibaba Cloud Native
Alibaba Cloud Native
Oct 19, 2019 · Cloud Native

How VPGAME Migrated Its Services to Kubernetes Using GitLab CI/CD and Docker

This article details VPGAME's end‑to‑end migration of its esports platform services to a Kubernetes‑based architecture, covering CI/CD tool selection, Docker and GitLab Runner setup, automated Docker image builds, and Kubernetes Deployment and Service templating with health checks, resource limits, logging and monitoring configurations.

DockerGitLab CIKubernetes
0 likes · 30 min read
How VPGAME Migrated Its Services to Kubernetes Using GitLab CI/CD and Docker
Architects' Tech Alliance
Architects' Tech Alliance
Oct 19, 2019 · Cloud Native

Overview of DevOps and Serverless Practices with Docker, Kubernetes, and Alibaba Cloud

This article explains DevOps concepts, continuous integration, and how to build a Docker‑based DevOps environment that meets eight key requirements, then discusses Serverless computing, Alibaba Cloud's Serverless Application Engine and Function Compute, and forecasts the future impact of Serverless on cloud resource utilization and software development.

Alibaba CloudCloud NativeDevOps
0 likes · 10 min read
Overview of DevOps and Serverless Practices with Docker, Kubernetes, and Alibaba Cloud
ITPUB
ITPUB
Oct 18, 2019 · Cloud Native

Deploy a Highly Available Kubernetes 1.12.5 Cluster with Kubespray

This guide walks through setting up password‑less SSH, downloading a specific Kubespray tag, customizing image repositories, configuring Docker mirrors, adjusting DNS and network plugins, and finally running Ansible playbooks to provision a HA Kubernetes 1.12.5 cluster.

AnsibleDockerHA
0 likes · 10 min read
Deploy a Highly Available Kubernetes 1.12.5 Cluster with Kubespray
Alibaba Cloud Native
Alibaba Cloud Native
Oct 18, 2019 · Cloud Native

Deploy WebSocket and gRPC Services on Knative: A Step‑by‑Step Guide

This article walks you through deploying a WebSocket chat service and a gRPC ping service on Knative, covering repository cloning, Docker image preparation, Knative Service YAML configuration, kubectl deployment commands, and browser‑based verification to ensure the services run correctly in a serverless environment.

DockerGoKnative
0 likes · 9 min read
Deploy WebSocket and gRPC Services on Knative: A Step‑by‑Step Guide
Programmer DD
Programmer DD
Oct 13, 2019 · Cloud Native

Shrink Java Docker Images & Halve Startup Time Using OpenJ9 & GraalVM

This article demonstrates how Java applications can be made smaller, faster to start, and more resource‑efficient in the cloud‑native era by using multi‑stage Docker builds, OpenJ9’s shared class cache and AOT compilation, and GraalVM native images, with step‑by‑step examples based on the Spring PetClinic and Micronaut projects.

DockerOpenJ9graalvm
0 likes · 19 min read
Shrink Java Docker Images & Halve Startup Time Using OpenJ9 & GraalVM
Youzan Coder
Youzan Coder
Oct 11, 2019 · Cloud Native

Migrating Test Environment from VMs to Kubernetes: Architecture, Steps, and Customizations

The Youzan PaaS team migrated its VM‑based test environment to a Kubernetes cluster—integrating GitLab, Jenkins, and Harbor—to cut hardware costs, simplify deployment via Dockerfiles, adopt cloud‑native standards, and gain faster integration cycles, better isolation, and advanced features such as node affinity, security contexts, persistent volumes, and ingress routing.

Cloud NativeDevOpsDocker
0 likes · 17 min read
Migrating Test Environment from VMs to Kubernetes: Architecture, Steps, and Customizations
Alibaba Cloud Native
Alibaba Cloud Native
Oct 9, 2019 · Cloud Native

Why Private Docker Image Pull Fails and How K8s Automates It with OAuth

This article explains why private Docker image pulls often fail due to credential handling, walks through the OAuth 2.0 protocol, details Docker login and manifest retrieval steps, and shows how Kubernetes automates secure image pulling using secrets, admission controllers, and the Acr credential helper.

DockerImage Pull SecretsKubernetes
0 likes · 12 min read
Why Private Docker Image Pull Fails and How K8s Automates It with OAuth
Java Captain
Java Captain
Oct 8, 2019 · Operations

Automated Environment Deployment Using FRP, Ansible, and Docker

This article describes a three-stage automated deployment strategy—traditional installation, VM image restoration, and automatic discovery with command issuance—leveraging FRP for internal network tunneling, Ansible for batch control, and Docker for rapid containerized deployment, significantly reducing operational effort and enabling a DevOps workflow.

AnsibleDeploymentDocker
0 likes · 13 min read
Automated Environment Deployment Using FRP, Ansible, and Docker
Big Data Technology & Architecture
Big Data Technology & Architecture
Sep 21, 2019 · Big Data

Deploying Apache Flink on Kubernetes: A Step‑by‑Step Guide

This tutorial explains how to run Apache Flink jobs on Kubernetes by building Docker images, deploying JobManager and TaskManager components with Kubernetes manifests, configuring high‑availability with ZooKeeper and HDFS, and using SavePoints and scaling techniques to manage and extend Flink streaming applications.

Big DataDockerFlink
0 likes · 14 min read
Deploying Apache Flink on Kubernetes: A Step‑by‑Step Guide
Ops Development Stories
Ops Development Stories
Sep 20, 2019 · Cloud Native

Deploy PHP & Java Websites on Kubernetes: A Step‑by‑Step Guide

This guide walks beginners through deploying PHP and Java web applications on a Kubernetes cluster, covering environment preparation, Docker image creation, namespace and secret setup, writing deployment, service and ingress manifests, and verifying access via host file configuration, illustrating each step with code snippets and diagrams.

Cloud NativeDeploymentDocker
0 likes · 12 min read
Deploy PHP & Java Websites on Kubernetes: A Step‑by‑Step Guide
Architects Research Society
Architects Research Society
Sep 19, 2019 · Information Security

Awesome Penetration Testing Resources and Tools

This comprehensive collection presents a curated list of penetration testing resources—including anonymity tools, antivirus‑evasion utilities, books, CTF frameworks, Docker containers for vulnerable systems, network analysis utilities, OSINT services, reverse‑engineering tools, and security education materials—providing security professionals and researchers with a valuable reference for offensive security testing and learning.

CTFDockerInfoSec
0 likes · 36 min read
Awesome Penetration Testing Resources and Tools
Architects' Tech Alliance
Architects' Tech Alliance
Sep 18, 2019 · Cloud Native

How Docker Handles Service Discovery and Load Balancing: Strategies and Trade‑offs

This article explains Docker’s origins, core concepts, and the challenges of container IP volatility, then compares client‑side and server‑side service discovery methods, evaluates DNS, LVS/IPVS, Nginx and HAProxy solutions, and presents practical load‑balancing architectures—including dynamic SLB integration and rolling‑update strategies—for reliable container deployments.

Cloud NativeDockercontainer networking
0 likes · 14 min read
How Docker Handles Service Discovery and Load Balancing: Strategies and Trade‑offs
Ops Development Stories
Ops Development Stories
Sep 18, 2019 · Cloud Native

Master Kubernetes: From Basics to Rapid Kubeadm Cluster Deployment

This guide introduces Kubernetes fundamentals, key features, architecture, and core concepts, then walks through a step‑by‑step kubeadm installation on CentOS, covering environment preparation, master and node setup, network plugin configuration, dashboard deployment, and verification of a functional cluster.

DockerKuberneteskubeadm
0 likes · 23 min read
Master Kubernetes: From Basics to Rapid Kubeadm Cluster Deployment
NetEase Game Operations Platform
NetEase Game Operations Platform
Sep 13, 2019 · Operations

Detailed Analysis of a GitLab Runner Performance Bottleneck

This article documents a multi‑stage investigation of intermittent GitLab Runner build timeouts and hangs, describing the background, VM configuration, successive diagnostic steps using strace, iotop, perf, and storage‑driver adjustments, and concludes with performance test results and lessons learned.

CI/CDDevOpsDocker
0 likes · 8 min read
Detailed Analysis of a GitLab Runner Performance Bottleneck
macrozheng
macrozheng
Sep 12, 2019 · Cloud Native

Why Docker Beats Virtual Machines: A Complete Beginner’s Guide

This article explains Docker’s lightweight container technology, contrasts it with traditional virtual machines, outlines its core components and architecture, and provides step‑by‑step installation instructions for Windows, macOS, and Linux, empowering developers to streamline environments and deployment.

ContainerizationDockerInstallation
0 likes · 17 min read
Why Docker Beats Virtual Machines: A Complete Beginner’s Guide
Programmer DD
Programmer DD
Sep 9, 2019 · Backend Development

How to Set Up and Use a Maven Private Repository with Nexus and Docker

This tutorial explains what a Maven private repository is, walks through setting up Nexus as a private repo using Docker, and shows how to configure Maven and deploy both project artifacts and third‑party JARs, enabling faster, secure builds for Java enterprise projects.

Build ToolDockerNexus
0 likes · 12 min read
How to Set Up and Use a Maven Private Repository with Nexus and Docker
Ziru Technology
Ziru Technology
Sep 6, 2019 · Backend Development

How to Build and Deploy PHP Application Images on the Omega Platform

This article guides readers through the architecture, extension types, image construction steps, configuration details, and local debugging procedures for deploying PHP applications as container images on the Omega platform, highlighting best practices and common pitfalls.

ContainerizationDockerImage Build
0 likes · 10 min read
How to Build and Deploy PHP Application Images on the Omega Platform
Sohu Tech Products
Sohu Tech Products
Sep 4, 2019 · Frontend Development

Building a Real‑Time Video Chat Application with Vue, WebRTC, Socket.io, Node.js and Redis

This tutorial walks through creating a full‑stack video‑chat app that supports multiple chat rooms, private messaging, user status, and peer‑to‑peer video calls by combining Vue.js for the frontend, Vuex for state management, Socket.io for real‑time communication, a Node/Express backend, Redis for scaling, and Docker for deployment.

DockerNode.jsSocket.IO
0 likes · 26 min read
Building a Real‑Time Video Chat Application with Vue, WebRTC, Socket.io, Node.js and Redis
21CTO
21CTO
Aug 26, 2019 · Cloud Native

How a Small Team Evolved from Monolith to Cloud‑Native Microservices

Facing growing business complexity, a two‑person SaaS team transitioned their monolithic application to a microservice architecture, adopting Spring Cloud, Docker, Kubernetes, CI/CD pipelines with Jenkins, automated testing, service splitting principles, and lightweight tracing, ultimately achieving scalable, observable, and maintainable cloud‑native operations.

DockerKubernetesMicroservices
0 likes · 14 min read
How a Small Team Evolved from Monolith to Cloud‑Native Microservices
DevOps Cloud Academy
DevOps Cloud Academy
Aug 23, 2019 · Operations

Jenkins Slave Docker Image Configuration and Startup Script

This guide explains how to configure a Jenkins slave Docker image by installing JDK, Maven, and other build tools, adding the agent.jar, setting environment variables, and providing a startup Bash script to launch the Jenkins agent within the container.

DockerJMeterJenkins
0 likes · 5 min read
Jenkins Slave Docker Image Configuration and Startup Script
GF Securities FinTech
GF Securities FinTech
Aug 22, 2019 · Backend Development

Mastering Health Checks in OpenResty: Compare Three Backend Modules

This article examines three OpenResty-based backend health‑check solutions—ngx_http_upstream_module, lua‑resty‑upstream‑healthcheck, and nginx_upstream_check_module—detailing their implementation principles, configuration examples, node status monitoring, and practical Docker integration, helping developers choose the optimal approach for reliable service availability.

DockerLuaOpenResty
0 likes · 9 min read
Mastering Health Checks in OpenResty: Compare Three Backend Modules
360 Tech Engineering
360 Tech Engineering
Aug 16, 2019 · Cloud Native

Understanding Harbor: Architecture, Features, High Availability, and Image Storage

This article explains the Harbor container image registry, its six‑component architecture, role‑based access control, project management, image replication, high‑availability deployment with load balancing, Docker image layers, overlay2 storage details, and the directory structure and workflow for storing and uploading images.

Cloud NativeContainer RegistryDocker
0 likes · 13 min read
Understanding Harbor: Architecture, Features, High Availability, and Image Storage
Architecture Digest
Architecture Digest
Aug 9, 2019 · Cloud Native

Introduction to Docker: Architecture, Core Concepts, and Basic Commands

This article provides a comprehensive overview of Docker, covering its origins from LXC, the relationship between LXC and Docker, Docker's architecture and components, key container technologies such as namespaces and cgroups, and step‑by‑step instructions for installing, managing images, running containers, and inspecting logs.

Cloud NativeContainersDocker
0 likes · 29 min read
Introduction to Docker: Architecture, Core Concepts, and Basic Commands
DevOps Cloud Academy
DevOps Cloud Academy
Aug 4, 2019 · Cloud Native

Step-by-Step Guide to Installing an OpenShift 3.11 Cluster on CentOS Virtual Machines

This guide walks through preparing three CentOS 7.6 VMs as combined master‑node hosts, configuring password‑less SSH, updating the OS, installing Ansible, importing required Docker images, setting up the Ansible inventory, deploying the OpenShift 3.11 cluster, creating an admin account, and troubleshooting common issues.

AnsibleCentOSCloud Native
0 likes · 11 min read
Step-by-Step Guide to Installing an OpenShift 3.11 Cluster on CentOS Virtual Machines
Full-Stack DevOps & Kubernetes
Full-Stack DevOps & Kubernetes
Aug 4, 2019 · Cloud Native

Step-by-Step Guide: Deploy Jenkins on Kubernetes with NFS Storage and CI/CD Pipelines

This tutorial walks through installing NFS, creating PersistentVolume and PersistentVolumeClaim, deploying Jenkins as a Kubernetes Deployment with a Service, configuring Jenkins credentials and plugins, and building a complete CI/CD pipeline that builds, pushes Docker images and promotes deployments across dev, qa, and prod environments.

DockerJenkinsKubernetes
0 likes · 11 min read
Step-by-Step Guide: Deploy Jenkins on Kubernetes with NFS Storage and CI/CD Pipelines
Tencent Cloud Developer
Tencent Cloud Developer
Jul 29, 2019 · Cloud Computing

Interview on Cloud Computing Trends and the Rise of Docker + Kubernetes

In an interview, Xinlai Technology’s CEO/CTO Li Wenqiang, a Tencent Cloud Valuable Professional, warns that high costs, expertise gaps and vendor lock‑in hinder cloud migration, urges multi‑cloud interoperability, praises Docker‑Kubernetes as the catalyst for cloud‑native development, and predicts rapid growth of edge, 5G, IoT and serverless workloads despite current low awareness in China, while highlighting the TVP program’s role in community knowledge sharing.

DockerKubernetesmulti-cloud
0 likes · 10 min read
Interview on Cloud Computing Trends and the Rise of Docker + Kubernetes
Programmer DD
Programmer DD
Jul 29, 2019 · Cloud Native

Master Docker: From Basics to Advanced Container Management

This comprehensive guide explains Docker's origins, core concepts, advantages, installation steps, essential commands, container lifecycle management, image customization with Dockerfile, and publishing to both Docker Hub and private registries, providing practical examples and code snippets for hands‑on learning.

ContainersDevOpsDocker
0 likes · 25 min read
Master Docker: From Basics to Advanced Container Management
Alibaba Cloud Native
Alibaba Cloud Native
Jul 26, 2019 · Cloud Native

How Alibaba’s Dragonfly P2P Architecture Solves Large‑Scale Docker Image Distribution

This article explains the challenges of massive Docker image distribution in large clusters, analyzes the impact of bandwidth, gzip decompression, and scaling, and presents Alibaba's multi‑layer solutions—including the Dragonfly P2P system, remote‑disk architecture, and DADI technology—to dramatically reduce registry load and improve deployment speed.

DADIDockerImage Distribution
0 likes · 13 min read
How Alibaba’s Dragonfly P2P Architecture Solves Large‑Scale Docker Image Distribution
dbaplus Community
dbaplus Community
Jul 25, 2019 · Operations

How to Secure Docker Containers with Namespaces and Cgroups

This guide explains Docker's Namespace and Cgroup mechanisms, shows how to configure them to limit resources and isolate containers, and demonstrates practical commands for protecting container security while highlighting their limitations.

Container SecurityDockerLinux
0 likes · 16 min read
How to Secure Docker Containers with Namespaces and Cgroups
Alibaba Cloud Native
Alibaba Cloud Native
Jul 19, 2019 · Cloud Native

Master Traffic Splitting and Version Control in Knative Serving

This guide walks through building a Go REST‑API, containerizing it, deploying multiple Knative Service revisions, configuring traffic percentages for gray releases, validating revisions before traffic shift, and rolling back, while comparing Knative’s traffic‑driven model to traditional pod‑based deployments.

Blue‑Green deploymentDockerGo
0 likes · 15 min read
Master Traffic Splitting and Version Control in Knative Serving
System Architect Go
System Architect Go
Jul 10, 2019 · Cloud Native

Dockerfile Best Practices: Tips for Efficient Image Building

This article presents ten practical Dockerfile best‑practice tips—including ordering instructions, precise COPY usage, merging RUN commands, minimizing dependencies, cleaning package caches, leveraging official and minimal base images, clear tagging, multi‑stage builds, and consistent build environments—to help developers create smaller, faster, and more maintainable container images.

ContainerDockerDockerfile
0 likes · 6 min read
Dockerfile Best Practices: Tips for Efficient Image Building
Architect's Tech Stack
Architect's Tech Stack
Jul 8, 2019 · Cloud Native

Understanding Docker Images, Containers, and Commands

This article explains Docker's core concepts—including the union file system, the distinction between images and containers, the structure of read‑only and read‑write layers, and detailed explanations of common Docker commands such as create, start, run, ps, images, and more—providing a comprehensive guide for developers to master container technology.

ContainerDevOpsDocker
0 likes · 12 min read
Understanding Docker Images, Containers, and Commands
Didi Tech
Didi Tech
Jul 5, 2019 · Artificial Intelligence

How Didi’s Jianshu Machine Learning Platform Boosts AI Development Efficiency

An in‑depth look at Didi’s Jianshu Machine Learning Platform reveals its end‑to‑end AI workflow—from experiment environments and batch training to high‑availability online serving—highlighting resource‑efficient Kubernetes scheduling, Docker‑based reproducible environments, a custom parameter server, and the IFX inference engine that together accelerate development, training, and deployment.

AIPlatformDockerInference
0 likes · 11 min read
How Didi’s Jianshu Machine Learning Platform Boosts AI Development Efficiency