An open API service indexing awesome lists of open source software.

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.

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