Tagged articles
2383 articles
Page 9 of 24
Ops Development & AI Practice
Ops Development & AI Practice
Apr 25, 2024 · Cloud Native

How to Keep Docker Containers in Sync with Host Timezone

This guide explains why Docker containers default to UTC, then walks through three practical ways—mounting host timezone files, setting the TZ environment variable, and using timedatectl or scripts—to ensure container time matches the host for reliable logging and scheduling.

ContainerDevOpsDocker
0 likes · 4 min read
How to Keep Docker Containers in Sync with Host Timezone
MaGe Linux Operations
MaGe Linux Operations
Apr 19, 2024 · Cloud Native

How Docker Transforms Go Web App Development and Continuous Deployment

This tutorial shows how to containerize a Go web application with Docker, use Beego for routing, set up development and production Dockerfiles, run automated tests, and integrate Semaphore for continuous integration and deployment, enabling consistent environments and streamlined workflows.

ContainerizationDockerGo
0 likes · 24 min read
How Docker Transforms Go Web App Development and Continuous Deployment
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Apr 19, 2024 · Cloud Native

Understanding Docker: Architecture, Core Components, and Underlying Mechanisms

This article explains Docker’s core architecture—including images, containers, and registries—and details how Linux namespaces, cgroups, and UnionFS work together to provide resource isolation, limitation, and lightweight virtualization, while also offering promotional links to extensive architecture and interview collections.

ContainersDockerNamespace
0 likes · 6 min read
Understanding Docker: Architecture, Core Components, and Underlying Mechanisms
iQIYI Technical Product Team
iQIYI Technical Product Team
Apr 19, 2024 · Databases

Root Cause Analysis of Redis Timeout in a Spring Cloud Service Using Lettuce and Netty

A Docker image upgrade reduced Netty EventLoop threads, causing a Pub/Sub listener’s blocking Future.get() to stall one thread, fill a Redis cluster connection’s receive buffer and trigger widespread Redis timeouts in the custom Lettuce cache framework, which were eliminated by increasing I/O threads or making the callback asynchronous.

DebuggingDockerEventLoop
0 likes · 15 min read
Root Cause Analysis of Redis Timeout in a Spring Cloud Service Using Lettuce and Netty
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Apr 19, 2024 · Operations

Setting Up Jenkins with Docker for Automated Frontend Project Build and Deployment

This guide walks through installing Jenkins in a Docker container, configuring the initial admin password, installing essential plugins such as NodeJS, Publish Over SSH and DingTalk, setting up Node.js mirrors, defining SSH deployment, creating a freestyle job that pulls a Git repository, builds the frontend with pnpm, and automates deployment and notifications via webhooks for both GitHub and GitLab.

DingTalkDockerJenkins
0 likes · 13 min read
Setting Up Jenkins with Docker for Automated Frontend Project Build and Deployment
Liangxu Linux
Liangxu Linux
Apr 18, 2024 · Cloud Native

How Does Docker Achieve CPU Isolation with cgroups?

Docker uses Linux cgroups to limit and schedule CPU resources for containers, allowing you to set a maximum number of CPU cores per container while keeping the actual cores dynamically allocated, so other processes can still use the remaining CPUs.

ContainersDockercgroups
0 likes · 7 min read
How Does Docker Achieve CPU Isolation with cgroups?
Code Ape Tech Column
Code Ape Tech Column
Apr 15, 2024 · Backend Development

Best Practices for Dockerizing Spring Boot Applications

This guide explains why Docker is essential for Java developers and provides step‑by‑step best practices—including selecting the right base image, using multi‑stage builds, environment variables, health checks, Docker cache, .dockerignore files, and image labels—complete with ready‑to‑use Dockerfile examples for Spring Boot projects.

DockerDockerfileHealthcheck
0 likes · 12 min read
Best Practices for Dockerizing Spring Boot Applications
ITPUB
ITPUB
Apr 9, 2024 · Cloud Native

What Docker Got Right and Wrong in Its First Decade

In a candid ten‑year retrospective, Docker’s former engineering VP outlines three strategic successes—container adoption, developer focus, and community building—and three missteps—confusing users with customers, vague culture definition, and over‑reliance on containers—offering valuable lessons for cloud‑native innovators.

CommunityContainersDocker
0 likes · 9 min read
What Docker Got Right and Wrong in Its First Decade
IT Services Circle
IT Services Circle
Apr 8, 2024 · Cloud Native

Understanding Docker: Architecture, Images, Containers, Compose, Swarm and Their Relationship to Kubernetes

This article explains Docker's core concepts—including images, containers, Dockerfile, registries, and the client‑server architecture—while also covering Docker Compose, Docker Swarm, and how they relate to Kubernetes, providing a concise yet comprehensive overview of containerization and its role in modern cloud‑native development.

ContainersDevOpsDocker
0 likes · 15 min read
Understanding Docker: Architecture, Images, Containers, Compose, Swarm and Their Relationship to Kubernetes
Java Architect Essentials
Java Architect Essentials
Apr 7, 2024 · Cloud Computing

Deploying a Private Nextcloud Instance with Docker on Alibaba Cloud

This tutorial walks through installing Docker on an Alibaba Cloud server, pulling and running the Nextcloud container, configuring firewall ports, initializing the service, and verifying the private cloud storage works, providing step‑by‑step commands and screenshots for a complete deployment.

Alibaba CloudContainerDocker
0 likes · 5 min read
Deploying a Private Nextcloud Instance with Docker on Alibaba Cloud
MaGe Linux Operations
MaGe Linux Operations
Mar 30, 2024 · Cloud Native

How Docker’s bridge0 (docker0) Works: Inside the Container Network Bridge

This article explains Docker's default docker0 bridge, how it creates a virtual Ethernet pair for each container, the role of IP addresses and routing, how iptables NAT and filter rules enable container‑to‑host and container‑to‑container communication, and how to customize the bridge and DNS settings.

DockerLinuxNetwork Bridge
0 likes · 10 min read
How Docker’s bridge0 (docker0) Works: Inside the Container Network Bridge
Python Programming Learning Circle
Python Programming Learning Circle
Mar 26, 2024 · Cloud Native

Choosing the Right Docker Base Image for Python Applications

An in‑depth comparison of popular Docker base images—including Ubuntu, Alpine, Debian, CentOS, Amazon Linux 2, and official Python images—evaluates stability, security updates, dependency freshness, size, and build time to guide developers in selecting the optimal Linux distribution for Python container deployments.

Base ImageContainerDocker
0 likes · 18 min read
Choosing the Right Docker Base Image for Python Applications
Eric Tech Circle
Eric Tech Circle
Mar 24, 2024 · Artificial Intelligence

Running Local LLMs: Ollama vs Hugging Face – A Hands‑On Comparison

This guide compares Ollama and Hugging Face for running large language models locally, detailing API and local execution methods, installation steps, model selection, resource requirements, integration with AnythingLLM, container deployment, embedding and vector store setup, and practical observations on performance and limitations.

AnythingLLMDockerEmbedding
0 likes · 15 min read
Running Local LLMs: Ollama vs Hugging Face – A Hands‑On Comparison
dbaplus Community
dbaplus Community
Mar 19, 2024 · Operations

How to Visualize Nginx Access Logs with Loki and Grafana

This guide shows how to collect Nginx access logs, convert them to JSON, ship them with Promtail to Loki, and display the data in Grafana dashboards, including setup steps, configuration snippets, and troubleshooting tips for a lightweight observability stack.

DockerGrafanaLog Monitoring
0 likes · 9 min read
How to Visualize Nginx Access Logs with Loki and Grafana
php Courses
php Courses
Mar 18, 2024 · Operations

Understanding Load Balancing and Its Implementation with Docker and Nginx

This article explains the concept and importance of load balancing, then demonstrates a practical Docker‑Compose setup with multiple PHP containers and an Nginx reverse proxy, including configuration files and test results that show how traffic is distributed to improve system reliability and performance.

DockerOperationsload balancing
0 likes · 5 min read
Understanding Load Balancing and Its Implementation with Docker and Nginx
MaGe Linux Operations
MaGe Linux Operations
Mar 16, 2024 · Operations

Master Docker Networking: From Bridge to Overlay and Macvlan Explained

This comprehensive guide explains Docker's networking fundamentals, covering network types such as bridge, host, overlay, and macvlan, their drivers, configurations, security considerations, and practical command‑line examples for creating, managing, and troubleshooting container networks in both single‑host and multi‑host environments.

ContainersDockerMacvlan
0 likes · 19 min read
Master Docker Networking: From Bridge to Overlay and Macvlan Explained
Sohu Tech Products
Sohu Tech Products
Mar 13, 2024 · Cloud Native

How Docker Simplifies Private Deployment: A Complete Step‑by‑Step Guide

This article explains the challenges of traditional private deployment, introduces Docker container technology and its benefits, and provides detailed instructions—including Dockerfile creation, image building, network setup, container linking, image export/import, and container startup—to dramatically reduce deployment time and effort.

Container DeploymentDockerDocker Network
0 likes · 14 min read
How Docker Simplifies Private Deployment: A Complete Step‑by‑Step Guide
Ops Development & AI Practice
Ops Development & AI Practice
Mar 4, 2024 · Cloud Native

Mastering GitHub Codespaces: How to Configure Development Containers for Faster Coding

GitHub Codespaces offers a browser‑based, cloud‑hosted development environment where developers can define fully customized, isolated containers via a .devcontainer.json file, enabling easy configuration, consistent tooling, instant access, persistent storage, and seamless Git integration, as illustrated through a step‑by‑step Go project example.

DevContainerDevelopment ContainersDocker
0 likes · 8 min read
Mastering GitHub Codespaces: How to Configure Development Containers for Faster Coding
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Mar 4, 2024 · Cloud Native

Master Docker: Core Concepts, Architecture, and Real-World Use Cases

This article provides a comprehensive overview of Docker containers, covering their definition, core components, implementation mechanisms such as namespaces, cgroups, and UnionFS, and practical application scenarios like microservices, CI/CD, and rapid deployment, while illustrating key concepts with diagrams and command examples.

ContainerDevOpsDocker
0 likes · 10 min read
Master Docker: Core Concepts, Architecture, and Real-World Use Cases
DevOps Operations Practice
DevOps Operations Practice
Feb 29, 2024 · Cloud Computing

Three Free Docker Visual Management Tools: Docker Desktop, Portainer, and Docker UI

This article introduces three free Docker visual management tools—Docker Desktop, Portainer, and Docker UI—detailing their key features, cross‑platform support, user‑friendly interfaces, and monitoring capabilities to help developers and ops teams choose the most suitable solution for container management.

Container ManagementDockercloud-computing
0 likes · 6 min read
Three Free Docker Visual Management Tools: Docker Desktop, Portainer, and Docker UI
MaGe Linux Operations
MaGe Linux Operations
Feb 29, 2024 · Backend Development

Mastering JVM Heap Settings in Docker: Best Parameters Across JDK Versions

This guide explains how JVM determines heap size on physical machines versus containers, compares behavior of different JDK releases, and provides concrete Docker commands and JVM flags—such as -Xms/-Xmx, -XX:+UseCGroupMemoryLimitForHeap, and MaxRAMPercentage—to reliably control memory usage in containerized Java applications.

ContainerizationDockerJVM
0 likes · 11 min read
Mastering JVM Heap Settings in Docker: Best Parameters Across JDK Versions
Efficient Ops
Efficient Ops
Feb 27, 2024 · Operations

Master Docker Logging and Graylog Integration: A Step‑by‑Step Guide

This guide explains how Docker captures container output, stores it as JSON logs, configures various log drivers, and integrates with Graylog for centralized log management, including deployment, input setup, and sending logs from containers via Docker run or docker‑compose.

ContainerDockerGraylog
0 likes · 8 min read
Master Docker Logging and Graylog Integration: A Step‑by‑Step Guide
Efficient Ops
Efficient Ops
Feb 20, 2024 · Cloud Native

Master Docker Basics: Concepts, Installation, and Core Commands

This guide introduces Docker’s fundamental concepts—including images, containers, registries, and UnionFS—explains how to install Docker on Ubuntu, and provides essential commands for managing images, containers, networks, volumes, and logs, helping you quickly set up and operate containerized environments.

ContainersDevOpsDocker
0 likes · 17 min read
Master Docker Basics: Concepts, Installation, and Core Commands
Architecture Digest
Architecture Digest
Feb 18, 2024 · Operations

Setting Up Nginx Access Log Visualization with Loki and Grafana

This guide walks through installing Loki, Promtail, and Grafana (via Docker), configuring Nginx to emit JSON‑formatted access logs, collecting them with Promtail, storing them in Loki, and visualizing the data in Grafana dashboards, including geo‑IP enrichment and world‑map panels.

DockerGrafanaLoki
0 likes · 7 min read
Setting Up Nginx Access Log Visualization with Loki and Grafana
MaGe Linux Operations
MaGe Linux Operations
Feb 17, 2024 · Cloud Native

From chroot to Kubernetes: The Evolution of Containerization

Tracing the history of containerization, this article explores how early file isolation with chroot evolved through namespaces and cgroups, leading to LXC, Docker’s lightweight application packaging, Kubernetes orchestration, and finally cloud-native services like Huawei CCE, highlighting each stage’s impact on modern software deployment.

DockerLinuxNamespaces
0 likes · 11 min read
From chroot to Kubernetes: The Evolution of Containerization
Architect's Guide
Architect's Guide
Feb 16, 2024 · Cloud Native

Nginx Proxy Manager: Docker One‑Click Deployment and Configuration Guide

This article explains how to quickly set up Nginx Proxy Manager with Docker, covering project goals, key features, step‑by‑step deployment, default credentials, advanced Docker network and health‑check configurations, and provides useful code snippets and screenshots for reference.

ContainerizationDockerProxy Manager
0 likes · 6 min read
Nginx Proxy Manager: Docker One‑Click Deployment and Configuration Guide
MaGe Linux Operations
MaGe Linux Operations
Jan 28, 2024 · Cloud Native

Mastering Kind: Build, Configure, and Scale Kubernetes Clusters with Docker

This guide explains how to use Kind—a Docker‑based tool for creating Kubernetes test clusters—including its architecture, network model, installation steps, cluster creation commands, multi‑node and multi‑control‑plane configurations, image loading, custom port mappings, ingress deployment, troubleshooting tips, and best‑practice recommendations.

ClusterDockerconfiguration
0 likes · 15 min read
Mastering Kind: Build, Configure, and Scale Kubernetes Clusters with Docker
21CTO
21CTO
Jan 27, 2024 · Fundamentals

What Is Scrapscript? A Compact, Secure Language for Shareable Code

Scrapscript, a newly released compact and functional programming language, enables developers to create small, secure, and easily shareable programs that run on all major platforms and can be compiled to JavaScript for web deployment.

DockerScrapscriptcontent-addressable
0 likes · 2 min read
What Is Scrapscript? A Compact, Secure Language for Shareable Code
macrozheng
macrozheng
Jan 25, 2024 · Backend Development

How to Slash Spring Boot Memory Usage by Over 40% for Local Development

This guide explains why Spring Boot applications consume memory, shows how to configure the JVM and Tomcat settings, and demonstrates using Docker‑compose to apply these tweaks, enabling developers to reduce local memory usage by more than 40% and speed up development cycles.

DockerJVMMemory Optimization
0 likes · 7 min read
How to Slash Spring Boot Memory Usage by Over 40% for Local Development
Selected Java Interview Questions
Selected Java Interview Questions
Jan 17, 2024 · Cloud Native

Understanding Virtualization, Containerization, Docker, and Kubernetes: Concepts and Differences

The article explains the evolution from hardware virtualization to containerization, compares virtual machines with containers, introduces Docker as a leading container platform, and describes Kubernetes as the industry‑standard orchestration tool, highlighting their roles, advantages, and typical use cases in modern cloud environments.

DockerVirtualization
0 likes · 8 min read
Understanding Virtualization, Containerization, Docker, and Kubernetes: Concepts and Differences
Selected Java Interview Questions
Selected Java Interview Questions
Jan 16, 2024 · Cloud Native

Step-by-Step Jenkins Pipeline for Deploying Spring Cloud Microservices with Docker and Kubernetes

This tutorial explains how to automate the full lifecycle of a Spring Cloud microservice—from developers pushing code to Git, Jenkins pulling and building it with Maven, packaging the JAR into a Docker image, pushing the image to a private registry, and finally deploying or updating the service on a Kubernetes cluster using YAML manifests.

DockerJenkinsci/cd
0 likes · 12 min read
Step-by-Step Jenkins Pipeline for Deploying Spring Cloud Microservices with Docker and Kubernetes
Liangxu Linux
Liangxu Linux
Jan 13, 2024 · Cloud Native

Essential Docker Commands and Architecture: From Basics to Containers

This guide explains Docker's core architecture, lists the most frequently used Docker commands, compares containers with traditional virtual machines, and dives into the underlying Linux technologies—namespaces, cgroups, and union file systems—that make containerization possible.

ContainerDockerNamespace
0 likes · 12 min read
Essential Docker Commands and Architecture: From Basics to Containers
php Courses
php Courses
Jan 10, 2024 · Backend Development

Containerizing PHP and Nginx with Docker: Step‑by‑Step Guide

This tutorial walks through creating a project structure, writing a simple PHP app, configuring Nginx, authoring Dockerfiles, setting up .dockerignore and docker‑compose.yml, and finally building and running the containers so the PHP service is reachable via Nginx on localhost.

ContainerizationDockerPHP
0 likes · 4 min read
Containerizing PHP and Nginx with Docker: Step‑by‑Step Guide
Java High-Performance Architecture
Java High-Performance Architecture
Jan 5, 2024 · Databases

Why Manticore Search Could Replace Elasticsearch: 10× Faster, Open‑Source DB

Discover how Manticore Search, an open‑source C++‑based high‑performance search engine, claims to outperform Elasticsearch by up to 15‑times, offering cost‑effective, multi‑threaded full‑text search, SQL compatibility, Docker deployment, and extensive language client support for diverse data workloads.

C++DockerElasticsearch alternative
0 likes · 6 min read
Why Manticore Search Could Replace Elasticsearch: 10× Faster, Open‑Source DB
Architecture Development Notes
Architecture Development Notes
Jan 3, 2024 · Cloud Native

Build a Kubernetes Cluster with kubeadm: Step‑by‑Step Guide

This guide walks you through preparing Linux machines, configuring system settings, installing Docker and Kubernetes components with kubeadm, initializing a master node, deploying a pod network, joining worker nodes, and verifying the cluster, providing a complete step‑by‑step tutorial for building a Kubernetes cluster.

Cluster SetupDockerFlannel
0 likes · 7 min read
Build a Kubernetes Cluster with kubeadm: Step‑by‑Step Guide
ITPUB
ITPUB
Dec 23, 2023 · Cloud Native

Why Podman Is Gaining Traction Over Docker: Key Differences and Future Impact

Podman, a daemonless OCI‑compatible container engine created by Red Hat, offers rootless operation, tighter security, and direct runtime interaction, positioning it as a compelling alternative to Docker while its broader adoption depends on ecosystem maturity and community support.

DockerOCIPodman
0 likes · 7 min read
Why Podman Is Gaining Traction Over Docker: Key Differences and Future Impact
IT Services Circle
IT Services Circle
Dec 20, 2023 · Backend Development

RabbitMQ: Longevity, Limitations, and Continued Popularity

RabbitMQ, a mature message‑queue system first released in 2007 and built with Erlang, remains widely used due to its continuous updates, simple deployment, flexible AMQP routing, and extensive client support, even though it has older architecture, limited performance, and a smaller community compared with newer alternatives.

AMQPBackendDocker
0 likes · 8 min read
RabbitMQ: Longevity, Limitations, and Continued Popularity
dbaplus Community
dbaplus Community
Dec 18, 2023 · Databases

Is Running Production Databases in Docker a Good Idea? Risks and Realities

The article critically examines the suitability of placing production databases in Docker containers, highlighting reliability, maintainability, performance, and operational complexities, and concludes that while containers offer some benefits for stateless services, they often compromise the essential stability required for stateful database workloads.

ContainerizationDockerPostgreSQL
0 likes · 20 min read
Is Running Production Databases in Docker a Good Idea? Risks and Realities
php Courses
php Courses
Dec 15, 2023 · Backend Development

Best Practices for Upgrading Web Applications to PHP 8

This article explains why upgrading from PHP 7.4 to PHP 8 is essential for security, performance, and modern language features, and provides a step‑by‑step guide—including Docker containerization, compatibility checks, version updates, issue fixing, and verification—to safely migrate web applications.

DockerPHP 8
0 likes · 9 min read
Best Practices for Upgrading Web Applications to PHP 8
Aikesheng Open Source Community
Aikesheng Open Source Community
Dec 14, 2023 · Databases

SQLE 3.0 Installation Guide: RPM and Docker Deployment

This article provides a step‑by‑step guide for installing the open‑source SQLE 3.0 SQL quality management platform using both RPM packages and Docker containers, covering environment preparation, configuration file adjustments, service startup, common issues, and troubleshooting tips.

DatabaseDockerInstallation
0 likes · 11 min read
SQLE 3.0 Installation Guide: RPM and Docker Deployment
macrozheng
macrozheng
Dec 12, 2023 · Backend Development

RediSearch vs Elasticsearch: Cheap Setup, Performance Benchmarks, Java Guide

RediSearch, a low‑memory Redis module, offers comparable full‑text search capabilities to Elasticsearch, with faster indexing and query performance on modest hardware; this article explains its features, compares benchmarks, shows Docker installation, and provides Java/Jedis code examples for creating, querying, and managing indexes.

DockerElasticsearchFull-Text Search
0 likes · 11 min read
RediSearch vs Elasticsearch: Cheap Setup, Performance Benchmarks, Java Guide
IT Services Circle
IT Services Circle
Dec 10, 2023 · Databases

Should Production Databases Be Deployed in Docker/Kubernetes? A Critical Analysis

The article critically examines the drawbacks of running production databases inside Docker containers or Kubernetes, arguing that while containers excel for stateless services, they introduce reliability, performance, maintenance, and complexity challenges that make them unsuitable for critical stateful database workloads.

ContainersDatabaseDocker
0 likes · 20 min read
Should Production Databases Be Deployed in Docker/Kubernetes? A Critical Analysis
Liangxu Linux
Liangxu Linux
Dec 7, 2023 · Backend Development

Deploy Homebox: Open‑Source Home Inventory System with Docker

Homebox is an open‑source inventory and organization system for home users, built with React and Node.js, that can be quickly tried online or deployed locally via Docker Compose using a few simple commands and a GitHub repository.

DockerReActdeployment
0 likes · 4 min read
Deploy Homebox: Open‑Source Home Inventory System with Docker
DevOps Cloud Academy
DevOps Cloud Academy
Dec 6, 2023 · Databases

Implementing a Complete Azure DevOps Database CI/CD Workflow with Bytebase

This article demonstrates how to set up a full database CI/CD pipeline on Azure DevOps using Bytebase, covering Docker deployment, ngrok configuration, GitOps integration, SQL review automation, approval processes, schema write‑back, and migration detection, with step‑by‑step instructions and code examples.

Azure DevOpsBytebaseDatabase CI/CD
0 likes · 11 min read
Implementing a Complete Azure DevOps Database CI/CD Workflow with Bytebase
政采云技术
政采云技术
Nov 28, 2023 · Databases

Deploying StarRocks 3 on ARM Architecture Using Docker

This guide explains how to deploy the high‑performance MPP database StarRocks 3 on ARM servers by using Docker images, configuring FE and BE nodes, adjusting Java versions, integrating with Hadoop/Hive, and setting up monitoring and log‑cleanup scripts.

ARMDatabase DeploymentDocker
0 likes · 12 min read
Deploying StarRocks 3 on ARM Architecture Using Docker
DevOps Cloud Academy
DevOps Cloud Academy
Nov 27, 2023 · Operations

Implementing a DevSecOps CI/CD Pipeline for Multi‑Language Applications with Jenkins

This article walks through building a comprehensive DevSecOps CI/CD pipeline in Jenkins that integrates source control, static analysis, vulnerability scanning, multi‑language builds, Docker image creation, Trivy security checks, Kubernetes deployment, and ZAP DAST testing to securely deliver applications across various runtimes.

DevSecOpsDockerJenkins
0 likes · 18 min read
Implementing a DevSecOps CI/CD Pipeline for Multi‑Language Applications with Jenkins
Programmer DD
Programmer DD
Nov 24, 2023 · Backend Development

What’s New in Spring Boot 3.2? Explore Java 21 Features and Virtual Threads

Spring Boot 3.2, released shortly after Java 21, brings a host of enhancements such as virtual thread support, CRaC checkpoint restore, SSL bundle reloading, improved observability, new RestClient and JdbcClient, Jetty 12, Pulsar, Kafka and RabbitMQ SSL, redesigned nested JAR handling, Docker image build upgrades, and a comprehensive video walkthrough by Josh Long.

Backend DevelopmentDockerKafka
0 likes · 7 min read
What’s New in Spring Boot 3.2? Explore Java 21 Features and Virtual Threads
Java Architect Essentials
Java Architect Essentials
Nov 22, 2023 · Information Security

Apache ActiveMQ Remote Code Execution Vulnerability and Mitigation for JDK8/Docker Environments

The article explains the critical remote code execution vulnerability discovered in Apache ActiveMQ, lists the affected and safe versions, and provides practical mitigation steps—including upgrading, network restrictions, and a custom Docker image for JDK8 users—to protect systems from exploitation.

Apache ActiveMQDockerJDK8
0 likes · 4 min read
Apache ActiveMQ Remote Code Execution Vulnerability and Mitigation for JDK8/Docker Environments
Advanced AI Application Practice
Advanced AI Application Practice
Nov 22, 2023 · Cloud Native

Beyond Implementation Details: When Is Docker Really Slower Than Native Services?

The article examines whether Docker incurs performance penalties compared to native services, arguing that the decision to adopt containers and micro‑services must weigh business complexity, company stage, team size, infrastructure readiness, and operational costs rather than relying on generic hype.

ContainerizationDockerTechnology Selection
0 likes · 7 min read
Beyond Implementation Details: When Is Docker Really Slower Than Native Services?
Open Source Tech Hub
Open Source Tech Hub
Nov 15, 2023 · Backend Development

Mastering CLI Path Mapping and PHPUnit Setup for PHP Backend Projects

This guide walks through configuring CLI interpreter path mappings, setting up Docker container paths, installing PHPUnit, creating a comprehensive phpunit.xml configuration, organizing test directories, writing a bootstrap script, and generating test reports, providing a complete backend testing workflow for PHP projects.

Backend testingCLIDocker
0 likes · 4 min read
Mastering CLI Path Mapping and PHPUnit Setup for PHP Backend Projects
Liangxu Linux
Liangxu Linux
Nov 12, 2023 · Operations

Deploy FRP with Docker: Intranet Penetration Made Simple

This guide explains the fundamentals of FRP, a reverse‑proxy tool for intranet penetration, and provides step‑by‑step instructions to deploy the FRPS server and FRPC client with Docker, configure ports, view logs, access the dashboard, expose local services, and troubleshoot common issues.

DevOpsDockerfrp
0 likes · 14 min read
Deploy FRP with Docker: Intranet Penetration Made Simple
Open Source Linux
Open Source Linux
Nov 8, 2023 · Information Security

Top 10 Docker Vulnerability Scanners to Secure Your Containers in 2023

This article reviews the most popular Docker security tools, explains their key features, and shows how they help organizations automatically scan images, detect vulnerabilities, enforce policies, and improve container runtime protection across development and production environments.

DevOpsDockercloud-native
0 likes · 12 min read
Top 10 Docker Vulnerability Scanners to Secure Your Containers in 2023