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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
S
SegmentFault 最新的问题
大猫的无限游戏
大猫的无限游戏
The GitHub Blog
The GitHub Blog
M
MIT News - Artificial intelligence
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
H
Help Net Security
Engineering at Meta
Engineering at Meta
Microsoft Security Blog
Microsoft Security Blog
阮一峰的网络日志
阮一峰的网络日志
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
C
Check Point Blog
F
Fortinet All Blogs
腾讯CDC
博客园 - Franky
WordPress大学
WordPress大学
U
Unit 42

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
Why Docker Breaks Inside MicroVMs (Part 1): The Linux Ass...
Arnab Chatte · 2026-04-24 · via DEV Community

We tried running Docker inside a microVM. It failed before the first container even started.

The error wasn’t helpful:

cgroup mountpoint does not exist

Enter fullscreen mode Exit fullscreen mode

On a normal EC2 instance, Docker just works. Same binary, same commands. Here, it couldn’t even initialize.

This wasn’t a Docker issue. It wasn’t a kernel bug either. It was something more subtle: we were relying on parts of Linux that weren’t there anymore.

The part nobody thinks about

On a normal Linux system, you don’t start from zero. By the time you SSH into a machine and type docker run, a lot has already happened. You SSH in, run Docker, and it works. If it doesn’t, it’s usually your fault , a wrong command or wrong config.

Here, it didn’t feel like our mistake. It felt like something fundamental was missing. So instead of poking Docker, we started looking at the system itself.

The error mentioned cgroups. So we checked:

ls /sys/fs/cgroup

Enter fullscreen mode Exit fullscreen mode

Nothing useful.

Then:

mount | grep cgroup

Enter fullscreen mode Exit fullscreen mode

Nothing.

That’s when it clicked, this wasn’t misconfigured. It just wasn’t there.

This is where the mental model breaks

On a normal Linux system, /sys/fs/cgroup exists. Always. You don’t create it. You don’t mount it. It’s just… part of the system.

Except it’s not, Something mounts it during boot. You just never see it happen.

Inside the microVM, nothing had done that step so Docker tried to create its cgroup hierarchy, and the kernel basically said: “there’s no interface here”.

We mounted it manually:

mount -t cgroup2 none /sys/fs/cgroup

Enter fullscreen mode Exit fullscreen mode

Ran Docker again and it got further and ........ then it failed again.

That pattern kept repeating

Fix one thing and then hit the next wall. That’s when the debugging strategy changed for us .

Instead of asking:

“Why is Docker failing?”

We started asking:

“What is Docker assuming exists right now?”

Because clearly, a lot of those assumptions were wrong.

Realizing what systemd normally hides

On a full distro, systemd does a lot of work before you ever log in. You don’t notice it, but it:

  • mounts /proc, /sys, /dev

  • sets up cgroups

  • initializes parts of networking

  • prepares the runtime environment

In a microVM, none of that is guaranteed. There’s no systemd unless you put it there. Which means if something like /proc or /sys is missing or incomplete, nothing fixes it later.

You are effectively writing the boot process. We weren’t thinking about it that way initially. We were treating the microVM like a small server but that assumption kept breaking.

Docker is not as “self-contained” as it looks

Before this, I would’ve said Docker is pretty self-sufficient. It bundles a lot of things, abstracts a lot of complexity. That’s only true at the application layer.

Underneath, it leans heavily on the kernel:

  • cgroups for resource control

  • namespaces for isolation

  • networking primitives

  • packet filtering

If any of those aren’t wired up properly, Docker doesn’t degrade gracefully. It just stops.

The cgroup issue was just the first place it crashed.

Networking was where things got confusing

After fixing the basic mounts, Docker started initializing containers. Then networking broke.

At that point, it helps to step back and ask a very simple question:

How does a container actually reach the internet?

It sounds obvious, but if you try to answer it precisely, things get fuzzy.

Inside a container:

  • it has its own IP (something like 172.17.x.x)

  • it doesn’t share the host interface

  • it’s isolated in its own namespace

So how does a packet actually leave?

Rebuilding that understanding from scratch

We ended up tracing it step by step.

When Docker starts a container, it creates a new network namespace. That part is straightforward, it’s basically a separate network stack. Then it creates a veth pair. One side stays on the host, the other moves into the container.

That gives the container an interface. But it’s still not connected to anything useful.

So Docker plugs the host side into a bridge (docker0). Now containers can talk to each other.

But still no internet........

The last part is NAT. When a packet leaves the container:

  • it goes through the veth

  • hits the bridge

  • gets routed toward the host interface

But the source IP is something like 172.17.x.x, which doesn’t work outside.

So the kernel rewrites it to the host’s IP. That’s what actually lets containers talk to the outside world.

The extra layer we didn’t account for

All of that happens inside a normal VM. In our setup, there was another boundary.

The container was inside a microVM. That VM itself had a virtual NIC, backed by a tap device on the host.

So the path looked like this:

container → bridge → VM eth0 → virtual NIC → host → internet

Enter fullscreen mode Exit fullscreen mode

That’s two networking environments stacked on top of each other. If anything is missing at either level, packets don’t behave the way you expect. And the errors don’t tell you which layer is broken.

Where this goes next

Once Docker got past initialization, it hit this:

iptables: Failed to initialize nft: Protocol not supported

Enter fullscreen mode Exit fullscreen mode

That looks like a small issue. Change a setting, maybe switch a backend. But by this point, it was clear this wasn’t going to be a one-line fix.

That error sits on top of:

  • how packet filtering works in the kernel

  • how iptables talks to it

  • and what your kernel was actually compiled with

That’s where the real debugging started.

The takeaway from Part 1

The biggest shift wasn’t technical. It was mental. We stopped treating the microVM like a normal machine.

Instead:

  • nothing is assumed to exist

  • every layer has to be verified

  • and every fix reveals the next dependency

You’re not debugging Docker. You’re discovering what a “working Linux environment” actually consists of.

Part 2 is where we will discuss how that mental model pays off, because the iptables failure only makes sense once you see all the layers underneath it.