Skip to content

v1.33.0 — Container-label config + -? help alias

Choose a tag to compare

@amayer1983 amayer1983 released this 28 Jun 09:14
· 2 commits to main since this release

Added

  • Container labels for GitOps-style config (#42, @LeeNX). Docksentry reads docksentry.* labels off your containers, so config can live in your compose file. A present label overrides the equivalent bot/Web-UI toggle:

    • docksentry.enable=false / docksentry.exclude=true — take the container out of update scope (same as /pin).
    • docksentry.protect=true — refuse /stop (#38-style); =false force-unprotects.
    labels:
      - "docksentry.exclude=true"
      - "docksentry.protect=true"

    Booleans accept true/1/yes/on (case-insensitive). Lookups are best-effort — an inspect failure falls back to the stored toggle and never silently unprotects. More label-driven settings can follow.

  • -? per-command help alias (#15, @LeeNX). Append -? to any command — /protect -? is exactly /help protect.

Full 15-script regression sweep green.