| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Browser-based tool that turns messy Docker Compose output into clean, readable debugging views. Paste output from docker-autocompose, docker compose config, or raw docker-compose.yml — get sanitized YAML with sensitive values redacted, per-service cards, volume comparison tables, and a markdown table ready for Discord or GitHub support channels.
Live: baker-scripts.github.io/docker-compose-debugger
Two dedicated buttons:
Both formats include the Services overview, User/Group comparison, and Volume comparison sections.
The "User" column merges three sources of identity into a single value so you can spot mismatches at a glance:
Lookups are case-insensitive (so a typo'd Puid still surfaces). When the directive matches PUID:PGID, only one value is shown; when they conflict, the directive is shown with the env values annotated.
| What | Example | Result |
|---|---|---|
| Sensitive env keys | MYSQL_PASSWORD, API_KEY, DATABASE_URL, AWS_SECRET_ACCESS_KEY, *_FILE variants | value replaced with **REDACTED** |
| Inline credentials in URLs | postgres://<user>:<pw>@db/app | redacted regardless of the env-var name |
| Vendor token formats | GitHub PATs (ghp_…), AWS access keys (AKIA…), Tailscale auth keys (tskey-…-…), Discord/Slack webhooks, JWTs | redacted regardless of the env-var name |
| Email addresses | NOTIFY: user@example.com | NOTIFY: **REDACTED** |
| Home directory paths | /home/john/media:/tv | ~/media:/tv |
Safe-listed keys (kept as-is): PUID, PGID, TZ, UMASK, LOG_LEVEL, WEBUI_PORT, etc.
Removes auto-generated fields that clutter compose output:
Detects common misconfigurations and shows warnings with links to documentation:
Accepts multiple input formats:
The Advanced Settings panel allows custom sensitive patterns (regex) and safe key lists. Configuration persists in localStorage.
Download docker-compose-debugger.html from the latest release and open it in any browser. Everything runs client-side in a single HTML file — no server, no network requests, no data leaves your browser.
npm install
npm run dev # Start Vite dev server
npm test # Run tests (vitest)
npm run build # Build single-file dist/index.htmlSingle-page app built with Vite + vanilla TypeScript. The build produces one self-contained HTML file via vite-plugin-singlefile.
src/ dom.ts # Shared el() DOM helper (no innerHTML) patterns.ts # Key + value regex patterns, type guards, helpers extract.ts # Extracts YAML from mixed console output redact.ts # Redacts sensitive values, anonymizes paths noise.ts # Strips auto-generated noise fields advisories.ts # Detects misconfigurations (hardlinks, etc.) services.ts # Parses compose object into ServiceInfo[] + UserGroupInfo markdown.ts # GitHub + Discord markdown generators cards.ts # Renders per-service card DOM volume-table.ts # Service / User-Group / Volume comparison tables volume-utils.ts # Volume parsing + matrix builder config.ts # Customizable patterns, localStorage persistence clipboard.ts # Copy (with execCommand fallback), PrivateBin, Gist disclaimer.ts # PII warnings and legal disclaimers main.ts # UI assembly, tabs, and event wiring
npm test # Run tests
npx vitest run --coverage # Run with coverage reportThis tool is provided as-is with no warranty. While all processing happens client-side, always verify redaction output before sharing. The authors are not responsible for any accidentally exposed secrets.
MIT
| Back | FazBrowse Home | New Git URL |