DockerLens is a web-based dashboard for Docker, inspired by Portainer. It is currently under development and does not have a stable release.
- Manage Containers, Volumes, Networks, and other Docker resources
- Create Apps from templates (e.g., Postgres) or custom containers
- GitHub integration for custom containers
- View Docker logs and events
- Clean and simple dashboard interface
Pull the latest beta image and run DockerLens with a container name:
docker pull slxca/dockerlens:beta
docker run --name dockerlens \
-p 8800:8080 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v dockerlens-data:/data \
-d \
slxca/dockerlens:betaThe dashboard will be available at: http://<IP>:8800
To reset the database password, run the included script inside the container:
docker exec -it dockerlens /bin/bash
./scripts/reset-db-password.shImportant: After resetting the password, the container must be restarted:
docker restart dockerlens- Still under development – features may change
- Not recommended for production use
- Feedback and contributions are welcome