Halfway Through the MLH Production Engineering Fellowship
I'm halfway through the MLH Production Engineering Fellowship, and while I've learned a lot technically—from Linux fundamentals, Docker, NGINX, automa…
Latest Team Management news from Tech News
I'm halfway through the MLH Production Engineering Fellowship, and while I've learned a lot technically—from Linux fundamentals, Docker, NGINX, automa…
One Repo Became Three — Quietly, Then Publicly ai #docker #security #mcp Previously Back in February, I published AI Sandbox Environment + DockMCP — a…
In Multi-Tenancy Architecture for SaaS we worked through how a single deployment serves many organizations without their data or traffic bleeding into…
I got tired of Dockerfile linters that dump warnings with no sense of priority. So I built DockRx — it scores a Dockerfile, ranks the highest-ROI fixe…
Nephew has Docker basics down now — images, containers, volumes, networks, Compose. But the real world keeps handing him things the fundamentals didn'…
I built a self-hosted one-time secrets service in Node — here's the threat model Sharing an API key in Slack feels wrong. Password managers work great…
Zero-Touch Customer Onboarding My AI agent hosting service has exactly zero manual steps between payment and deployment. Here is how: The Pipeline Cus…
Modern software delivery is about much more than writing code. It requires automation, collaboration, repeatability, and reliable deployment workflows…
Docker Compose and Podman Quadlet solve overlapping problems but come from different design centers, and choosing between them depends on whether you …
I'm big on developer experience. As a leader, I want my team to be self-sufficient and handle any edge cases — without waiting on me, a shared staging…
Nephew has heard "just Dockerize it" a hundred times at work and nodded along without really knowing what that meant. Uncle sits him down for a proper…
Thanks @custralis for the great feedback on my article about Docker sandboxing ! You're 100% right — --network none alone isn't enough. Here's our act…
"Works on my machine" is the most expensive sentence in software. Docker exists to kill it. At its core, Docker packages your application together wit…
The Quest Begins (The "Why") Look, I still remember the first time I tried to automate a build for a tiny side‑project. I slapped together a shell scr…
I run a self-hosted Chatwoot for support, and I genuinely love it. But every time I wanted to actually grow on it, I hit the same wall. Import a few t…
Plane is an open-source project management platform that supports Agile, Kanban, waterfall, and timeline workflows — a self-hosted alternative to Jira…
The dogfood run went green. The gate had governed zero calls. That is the agent-governance-plane's entire job: run an AI coding agent inside a sandbox…
NocoDB is an open-source no-code platform that puts a spreadsheet-style UI on top of a relational database, with grid, form, Kanban, and gallery views…
The Quest Begins (The "Why") Picture this: I’m hunched over my laptop at 2 a.m., coffee cold, staring at a red GitHub Actions badge that stubbornly re…
Introduction As part of the DMI (DevOps Micro Internship) Cohort 2, our team successfully deployed the Spring Petclinic Microservices application on A…
Lately, whenever I need to run a quick experiment or spin up a localized environment with multiple moving pieces, I've completely stopped using Docker…
If you run a few containers on one VPS or homelab box, you've probably lived this loop: SSH in docker logs -f something Realize someone else on your t…
If you've ever needed a database for your integration tests in CI, you've probably encountered one of these solutions: Docker-in-Docker. A separate do…
📌 This article was originally published on Sherdil E-Learning . I'm republishing it here so the dev.to community can benefit too. The Kubernetes vs Do…
Containerization is a standard practice in modern software development. If you are developing, testing, or deploying applications, Docker is likely al…
Welcome to the first issue of Docker Security Dispatch . This newsletter covers Docker security, container supply chains, and the community around the…
canonical_url: https://github.com/liamromanis101/K8s-container_escape_audit Container security tooling tends to fall into two camps: heavyweight scann…
You have a fundamental problem in software: your code works on your machine, but breaks on someone else's. Different operating systems. Different vers…
Setting up a new Laravel project for production is always a headache. You need to configure Nginx, optimize PHP-FPM, set up Supervisor for your queue …
From zero to containerized in minutes — no "works on my machine" excuses Why Docker? You've probably heard it before: "It works on my machine." Docker…