https://github.com/slxca/dockerlens
Modern, centralized Docker container management and monitoring for teams.
https://github.com/slxca/dockerlens
container-management dashboard devops docker git-integration
Last synced: 24 days ago
JSON representation
Modern, centralized Docker container management and monitoring for teams.
- Host: GitHub
- URL: https://github.com/slxca/dockerlens
- Owner: slxca
- License: mit
- Created: 2026-01-02T02:47:33.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-01-06T20:37:09.000Z (about 1 month ago)
- Last Synced: 2026-01-07T20:28:53.541Z (about 1 month ago)
- Topics: container-management, dashboard, devops, docker, git-integration
- Language: TypeScript
- Homepage:
- Size: 272 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# DockerLens
DockerLens is a web-based dashboard for Docker, inspired by Portainer. It is currently **under development** and does not have a stable release.
---
## Features
- 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
---
## Quick Start
Pull the latest beta image and run DockerLens with a container name:
```bash
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:beta
````
The dashboard will be available at: `http://:8800`
---
## Reset Database Password
To reset the database password, run the included script inside the container:
```bash
docker exec -it dockerlens /bin/bash
./scripts/reset-db-password.sh
```
**Important:** After resetting the password, the container must be restarted:
```bash
docker restart dockerlens
```
---
## Notes
* Still **under development** – features may change
* Not recommended for production use
* Feedback and contributions are welcome