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

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
P
Proofpoint News Feed
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
C
Check Point Blog
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
美团技术团队
D
Docker
博客园 - Franky
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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 I Don’t Want Docker to Be the Default Deploy Path
Dan · 2026-05-03 · via DEV Community

Docker is good software.

I want to say that up front because the internet has a special talent for turning every tooling opinion into a cage match.

I use Docker. I like Docker for databases, repeatable CI jobs, weird dependency stacks, internal services, and anything where I need a clean system image that behaves the same everywhere.

But I do not want Docker to be the default deploy path for every web app.

Sometimes I just want to put a small app on a VPS and have it run.

That should feel boring.

The default path got heavier

A lot of modern deploy tutorials quietly turn this:

build app
copy files to server
start app
route traffic

Enter fullscreen mode Exit fullscreen mode

into this:

write a Dockerfile
pick a base image
handle build layers
create a registry
push an image
pull it on the server
wire up compose
configure networking
mount secrets
debug why the container exits

Enter fullscreen mode Exit fullscreen mode

None of those steps are evil.

They are just a lot.

And for many apps, they are not the interesting part.

If I am deploying a side project, a small SaaS, a webhook handler, a dashboard, or a little internal tool, the app usually needs a few simple things:

  • build the code
  • start the process
  • serve HTTPS
  • restart when it crashes
  • keep secrets out of git
  • show logs when something breaks
  • maybe run a few apps on the same machine

That list does not automatically mean "containerize everything".

Containers solve real problems

This is not an anti-Docker post.

Docker solves problems that are absolutely real.

It gives you a repeatable runtime. It makes system packages less mysterious. It can isolate services from each other. It makes CI easier. It gives teams a common artifact they can pass around.

That is useful.

But defaults matter.

When Docker becomes the first step for every deploy, even tiny apps inherit container concerns before they have container problems.

Now the developer is thinking about image size, build cache, multi-stage builds, registry auth, container networking, volume paths, base image updates, and whether the process can find the right port inside the container.

Again, all valid stuff.

Just not always the first stuff.

A VPS can run normal processes

The funny thing is that a VPS is already a computer.

It can run a process.

That sounds obvious, but a lot of modern deployment advice treats a server like it is only useful once it is running a container scheduler.

For many apps, a direct process model is enough:

bun run start
node server.js
./my-go-app
./target/release/my-rust-app

Enter fullscreen mode Exit fullscreen mode

The hard parts are not usually "can Linux run this binary?"

The hard parts are everything around it:

  • how does traffic reach it?
  • how does HTTPS work?
  • how do I deploy a new version without downtime?
  • where do logs go?
  • how do secrets get injected?
  • how do I restart it?
  • how do I run multiple apps on one box?

Those are deployment problems, not necessarily Docker problems.

I want the PaaS feeling without giving up the server

This is the thing I keep wanting.

I like the feel of a PaaS:

deploy

Enter fullscreen mode Exit fullscreen mode

and then the app is live.

But I also like owning a small VPS. It is cheap, flexible, and boring in a good way. I know where the app is running. I can SSH in. I can inspect the machine. I am not turning every weekend project into a cloud architecture diagram.

So the ideal flow, at least for me, looks more like this:

tako deploy

Enter fullscreen mode Exit fullscreen mode

Local machine builds the app. The deploy tool copies the release to the server. The server runs the app as a normal process. A proxy routes requests to healthy instances. HTTPS is handled. Logs are available. Secrets are managed outside random .env files.

No image registry needed.

No Dockerfile unless I actually want one.

No container networking puzzle for a two-route web app.

That is the direction I have been exploring with Tako, which is a small deployment tool for running apps on your own servers.

The boring path should be the happy path

There is a version of deployment that feels almost disappointingly plain:

tako init
tako servers add
tako deploy

Enter fullscreen mode Exit fullscreen mode

That is the kind of boring I want.

Not boring as in weak or limited.

Boring as in:

  • fewer concepts before the first deploy
  • fewer files created only for infrastructure
  • fewer moving parts for small apps
  • fewer places where a simple mistake hides
  • fewer "wait, is this a Docker problem or an app problem?" moments

I think the default path should optimize for the app getting online first.

Then, if the app grows into container needs, reach for containers.

Docker should be an option, not the entrance fee

The web has a habit of turning powerful tools into mandatory tools.

Docker is powerful. It deserves its place.

But I do not think every deploy should start by asking the developer to write a container recipe.

For a lot of projects, the best deploy path is still:

  • build the app
  • put it on a server
  • run it
  • route traffic to it
  • make updates boring

That is not old fashioned. That is just a good abstraction.

The default deploy path should feel calm.

It should feel like the server is helping you run your app, not asking you to become a platform engineer before lunch.