yelp/dumb-init

A minimal init system for Linux containers

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 37 minutes ago
Added to GitGenius on September 9th, 2026
Created on August 11th, 2015
Open Issues & Pull Requests: 33 (+0)
GitHub issues: Enabled
Number of forks: 356
Total Stargazers: 7,307 (+0)
Total Subscribers: 96 (+0)

Repository Insights (GitGenius)

Most active contributors

Sign in to see contributor activity.

Related repositories by overlapping contributors

No overlapping-contributor repos identified yet.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Issue API getrepoissuespagesummary failed: 429 Rate limit exceeded. Please try again later.

Detailed Description

dumb-init is a minimal init system for Linux containers that runs as PID 1 and supervises a single child process.

It proxies all signals it receives to the child process session, allowing normal signal handling to apply. When the child process exits, dumb-init cleans up any remaining processes and exits as well.

The tool is deployed as a small, statically-linked C binary that you prefix to your container command. It suits any containerized application that needs graceful shutdown behavior and proper process cleanup. Teams running Docker containers with CI pipelines or orchestration systems that send termination signals will find it particularly valuable, as it ensures containers actually stop when signaled rather than continuing to run in the background.

The project maintains a focused scope on solving the specific problems of signal handling and zombie reaping in containerized environments. Development activity shows consistent attention to the core functionality with updates addressing edge cases and compatibility across different container runtimes.