惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
博客园_首页
WordPress大学
WordPress大学
罗磊的独立博客
小众软件
小众软件
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
爱范儿
爱范儿
The Cloudflare Blog
GbyAI
GbyAI
C
Check Point Blog
腾讯CDC
MyScale Blog
MyScale Blog
有赞技术团队
有赞技术团队
博客园 - 聂微东
IT之家
IT之家
雷峰网
雷峰网
H
Help Net Security
博客园 - 叶小钗
美团技术团队
D
DataBreaches.Net

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Secure Your Swarm: Laying the Foundation with mTLS in v1.5.0
eldara · 2026-04-23 · via DEV Community

Security shouldn't be a trade-off for simplicity. In the world of Docker Swarm, managing secure access often involves a complex dance of manual certificate generation or relying on insecure plain-text connections.

With the release of SwarmCLI v1.5.0, we’re laying the foundation to change that. We’ve introduced the open-source SwarmCLI Proxy, a dedicated security layer that brings mTLS authentication and an internal Certificate Authority to your cluster. While configuring the initial certificates still involves some boilerplate in the Community Edition, this release provides a robust, hardened endpoint that sets the stage for future RBAC (Role-Based Access Control) and multi-user onboarding features.

The Problem: The "Open Door" Policy

By default, exposing the Docker Engine API over a network is risky. Standard TCP connections are unencrypted, and without proper authentication, anyone with network access can take control of your cluster. Implementing Mutual TLS (mTLS) is the gold standard, but setting it up—and more importantly, managing user certificates—is often too much friction for busy teams.

The Solution: A Hardened Security Layer

SwarmCLI v1.5.0 officially integrates the swarmcli-rbac-proxy. Deploying this stack inside your Swarm establishes a fortified entry point that manages authenticated traffic before it ever touches your Docker Engine.

How it works: Seeding the Infrastructure

By configuring your TLS keys and declaring PROXY_SEED_USERNAME during your docker stack deploy, the proxy is able to dynamically seed your environment:

  1. Internal CA: By mounting a CA private key, the proxy can act as its own Certificate Authority to automatically issue and manage mTLS client certificates for your users.
  2. State Management: The seeded admin user and ensuing credentials are automatically persisted securely into the proxy's internal SQLite database.
  3. Local Execution: Using the internal swcproxy admin CLI within the proxy container, administrators can effortlessly add users and manage roles.

The Foundation for Teams

While the current version of the proxy is focused on securing the primary administrative connection, we’ve built it with the future in mind. The infrastructure we’re deploying today lays the groundwork for the upcoming RBAC system.

Looking Ahead: The Onboarding Flow

In future updates, adding new users will be as simple as generating a one-time token. Here’s a sneak peek at the workflow we're currently building:

1. The Conceptual Flow

The admin will generate a secure, one-time token. The user will then pull their pre-configured Docker context directly from the proxy using that token.

sequenceDiagram
    participant Admin
    participant Proxy
    participant User
    Admin->>Proxy: swcproxy user add alice
    Proxy-->>Admin: One-time Token + URL
    Admin->>User: Share Token
    User->>Proxy: GET /api/v1/onboard/<token>
    Proxy-->>User: alice.tar (Certs + Config)
    User->>User: docker context import alice.tar

Enter fullscreen mode Exit fullscreen mode

2. In the Terminal (Developer Preview)

Here is a look at the planned implementation currently in development.

Admin Side:

# Inside the proxy container or via SwarmCLI
swcproxy user add alice

# Output:
# User 'alice' created.
# Share this command with the user:
# curl -k https://swarm.example.com:2376/api/v1/onboard/abc-123-xyz -o alice.tar

Enter fullscreen mode Exit fullscreen mode

User Side:

# Download the context
curl -k https://swarm.example.com:2376/api/v1/onboard/abc-123-xyz -o alice.tar

# Import and use
docker context import alice alice.tar
docker --context alice ps

Enter fullscreen mode Exit fullscreen mode

Architecture: Hardened by Design

The new architecture uses a dual-listener approach within the rbac-proxy container:

  • Internal (127.0.0.1:2375): Plain TCP for administrative tasks within the container.
  • External (0.0.0.0:2376): Full mTLS verification for all remote connections.

Everything is backed by a persistent SQLite store (with optional PostgreSQL support for high-availability clusters), ensuring your foundational RBAC data, onboarding tokens, and roles survive container restarts.

Protection for Your Infrastructure

We've also added "Infrastructure Protection" guards to prevent accidental deletion of critical networking components like the swarmcli-agent-net. SwarmCLI v1.5.0 isn't just about making Swarm easier to use—it's about making it safer to run.

Also in v1.5.0

While the new mTLS proxy is the star of this release, v1.5.0 also brings several quality-of-life improvements to the core CLI experience:

  • New Exit Key: To prevent accidental app exits, the exit shortcut has been changed from q to Ctrl+Q.
  • Export Stack YAML: You can now save a deployed stack's YAML directly back to your local filesystem.
  • Enhanced Inspect: Stack inspect now accurately shows per-service secrets and configs.
  • Improved Reliability: We've added robust timeouts to all Docker API calls, significantly reducing redundant requests.

Get Started

Ready to secure your cluster? Update to v1.5.0 today.

Detailed documentation and the full source code are available on our GitHub repository.

For a more comprehensive look at the proxy's technical architecture, check out our SwarmCLI Proxy Product Deep Dive.


Why SwarmCLI?

By 2026, we noticed a gap. Docker Swarm was rock solid, but the management tooling felt stuck in 2017. SwarmCLI bridges that gap with:

Real-time Health: Stop guessing which node is throttled.
Atomic Secret Sync: One-command .env to Raft encryption.
Edge-Optimized: Built in Go for zero-overhead on ARM/RPi5 devices.

Stay Connected