Should I run plain Docker Compose in production in 2026?
91–100 of 312 posts
Re: Should I run plain Docker Compose in production in 2026?
#92I am using systemd + go binary deploy. Running 10 years+ in production. Meanwhile docker based setup fail every now and then. And kubernetes? well forget about it.
Re: Should I run plain Docker Compose in production in 2026?
#93How do you guys, who run Docker in production deal with managing nftables firewall on hosts running containers? By design docker daemon creates and manages a set of firewall rules to forward traffic between containers and ingress traffic into containers as well as masquarades the outgoing container traffic. That is all well until admin needs to alter hosts firewall to allow and deny other traffic unrelated to docker…
By the way most docker based implementations do not actually need the userland proxy docker runs automatically. Disable it in /etc/docker/daemon.js
{
"userland-proxy": false
}Re: Should I run plain Docker Compose in production in 2026?
#94I am using systemd + go binary deploy. Running 10 years+ in production. Meanwhile docker based setup fail every now and then. And kubernetes? well forget about it.
What I'd like is systemd-compose. Maintaining several dozens of .service-files is not my idea of fun.
https://docs.podman.io/en/latest/markdown/podman-systemd.uni...
Re: Should I run plain Docker Compose in production in 2026?
#95Earlier quoted context omitted.
Spotify, Visa, NASA, Netflix, and a zillion others do, why not?
There are more secure alternatives. Are you sure those you listed actually use it on the servers? I would guess that at least Spotify and Netflix uses some other container runtime than Docker on their production servers. For a long time Docker was helpful and opened exposed ports on the firewall. So you wanted to access your redis ports locally and exposed it on the container? Now everything in there is accessible on…
Re: Should I run plain Docker Compose in production in 2026?
#96I am using systemd + go binary deploy. Running 10 years+ in production. Meanwhile docker based setup fail every now and then. And kubernetes? well forget about it.
What I'd like is systemd-compose. Maintaining several dozens of .service-files is not my idea of fun.
Re: Should I run plain Docker Compose in production in 2026?
#97I ran docker compose in development a lot. Just an easy way to turn on / off 5 different services at once for a project. Over time this was filling up my machine's storage (like 1 TB). Every few months I needed to run docker compose prune and see 600GB free up
Re: Should I run plain Docker Compose in production in 2026?
#98Earlier quoted context omitted.
Every company these days are AI companies. Even the ones you’d least expect. https://www.bbc.com/news/articles/c98mrepzgj7o
Sure, but you wouldn't just say "Oh they are a Postgres" company because they use that specific database somewhere in the stack.
Re: Should I run plain Docker Compose in production in 2026?
#99Re: Should I run plain Docker Compose in production in 2026?
#100I am using systemd + go binary deploy. Running 10 years+ in production. Meanwhile docker based setup fail every now and then. And kubernetes? well forget about it.
What I'd like is systemd-compose. Maintaining several dozens of .service-files is not my idea of fun.
Service file lives in the mono repo where all 6 services live.
Makes it trivial to make changes and redeploy.