Last login: Sun Jul 12 20:28:06 2026 on ttys000
cat open-source/peekr.md
peekr
Self-hosted, real-time Docker log viewer
Overview
peekr is a self-hosted, real-time Docker log viewer. It runs as a single container: the frontend is embedded into the Rust binary (via rust-embed), so one image serves the whole app. Mount the Docker socket and peekr reads your containers’ logs live.
Run
docker run -p 8080:8080 -v /var/run/docker.sock:/var/run/docker.sock peekr
Then open http://localhost:8080. The bind address is configurable through PEEKR_ADDR (default 0.0.0.0:8080).