Drone CI
ELI5 — The Vibe Check
Drone CI is a lightweight, container-native CI platform. Every step runs in its own Docker container, so there's zero pollution between builds. It's the minimalist of CI tools — does less, but does it cleanly. If Jenkins is a mansion, Drone is a well-designed tiny house.
Real Talk
Drone is an open-source, container-native continuous integration platform. Each pipeline step executes in an isolated Docker container, ensuring reproducible builds. It supports multi-platform builds, secrets management, and integrates with major Git providers.
When You'll Hear This
"Drone spins up a fresh container for every build step — no shared state." / "We self-host Drone because it's lightweight and Docker-native."
Related Terms
Buildkite
Buildkite is CI/CD for teams who want full control. The orchestration is in the cloud, but your builds run on YOUR machines.
Docker
Docker is like a lunchbox for your app.
GitHub Actions
GitHub Actions is CI/CD built right into GitHub. Push code, run tests, deploy — all from YAML files in your repo. No separate CI server needed.
Jenkins
Jenkins is the grandpa of CI/CD tools. It's been building code since 2011 and has a plugin for literally everything.