Hey! Two things:
Docker Hub image not updated after latest merge
The smallwat3r/secretapi:latest image on Docker Hub was last pushed on January 18, 2026, but PR #3 (dark theme + toggle) was merged on March 6, 2026. Could you push a new image to Docker Hub so users can get the latest changes without building from source?
Healthcheck endpoint
It would be great to have a lightweight /health (or /healthz) endpoint that returns a simple 200 OK. This would allow Docker healthchecks to be configured directly:
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:8085/health"]
interval: 30s
timeout: 5s
retries: 3
The current base image is minimal (no shell, no wget/curl), so users who want a healthcheck have to layer additional tools on top, which adds complexity to the deployment setup.
Thanks!
Hey! Two things:
Docker Hub image not updated after latest merge
The
smallwat3r/secretapi:latestimage on Docker Hub was last pushed on January 18, 2026, but PR #3 (dark theme + toggle) was merged on March 6, 2026. Could you push a new image to Docker Hub so users can get the latest changes without building from source?Healthcheck endpoint
It would be great to have a lightweight
/health(or/healthz) endpoint that returns a simple200 OK. This would allow Docker healthchecks to be configured directly:The current base image is minimal (no shell, no wget/curl), so users who want a healthcheck have to layer additional tools on top, which adds complexity to the deployment setup.
Thanks!