DweebUI/README.md

95 lines
5.1 KiB
Markdown
Raw Normal View History

# DweebUI
2024-01-15 09:11:58 +00:00
DweebUI is a web interface for managing Docker, with a zero-config dashboard for controlling and monitoring your containers.
2024-01-28 08:33:50 +00:00
Alpha v0.21 ( :fire: Experimental :fire: )
2024-01-08 02:29:56 +00:00
2024-01-15 07:57:51 +00:00
[:warning: DweebUI is a management interface and should not be directly exposed to the internet :warning:](https://github.com/lllllllillllllillll/DweebUI/wiki/Exposing-DweebUI-to-the-Internet)
[![GitHub Stars](https://img.shields.io/github/stars/lllllllillllllillll/DweebUI)](https://github.com/lllllllillllllillll)
[![GitHub Activity](https://img.shields.io/github/commit-activity/y/lllllllillllllillll/DweebUI)](https://github.com/lllllllillllllillll)
2023-12-14 05:26:42 +00:00
[![Docker Pulls](https://img.shields.io/docker/pulls/lllllllillllllillll/dweebui)](https://hub.docker.com/repository/docker/lllllllillllllillll/dweebui)
2023-12-15 09:25:07 +00:00
[![GitHub License](https://img.shields.io/github/license/lllllllillllllillll/DweebUI)](https://github.com/lllllllillllllillll/DweebUI/blob/main/LICENSE)
2024-01-28 08:33:50 +00:00
[![Coffee](https://img.shields.io/badge/-buy_me_a%C2%A0coffee-gray?logo=buy-me-a-coffee)](https://www.buymeacoffee.com/lllllllillllllillll)
2023-12-14 05:26:42 +00:00
2024-01-14 00:04:32 +00:00
* This is a personal project I started to get more familiar with Javascript and Node.js.
2024-01-15 09:11:58 +00:00
* Some UI elements are placeholders and every version may have breaking changes.
2024-01-14 10:23:14 +00:00
* Please post issues and discussions so I know what bugs and features to focus on.
2024-01-14 00:04:32 +00:00
<a href="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/dashboard1.png"><img src="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/dashboard1.png" width="25%"/></a>
<a href="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/dashboard2.png"><img src="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/dashboard2.png" width="25%"/></a>
<a href="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/apps.png"><img src="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/apps.png" width="25%"/></a>
<a href="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/images.png"><img src="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/images.png" width="25%"/></a>
<a href="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/register.png"><img src="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/register.png" width="25%"/></a>
<a href="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/login.png"><img src="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/login.png" width="25%"/></a>
<a href="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/syslogs.png"><img src="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/syslogs.png" width="25%"/></a>
<a href="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/volumes.png"><img src="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/screenshots/volumes.png" width="25%"/></a>
## Features
2023-12-14 08:40:10 +00:00
* [x] Dashboard provides server metrics, container metrics, and container controls, on a single page.
* [x] View container logs.
* [ ] Update containers (planned).
* [x] Manage your Docker networks, images, and volumes.
* [x] Light/Dark Mode.
* [x] Mobile Friendly.
* [x] Easy to install app templates.
* [x] Multi-User built-in.
* [ ] Permissions system (in development).
* [x] Support for Windows, Linux, and MacOS.
* [ ] Docker compose import (in development).
* [x] Templates.json maintains compatability with Portainer, allowing you to use the template without needing to use DweebUI.
2023-12-14 08:40:10 +00:00
* [x] Automatically persists data in docker volumes if bind mount isn't used.
* [ ] Preset variables (planned).
## Setup
2023-12-11 00:37:01 +00:00
Docker Compose:
```
2023-12-06 20:07:37 +00:00
version: "3.9"
services:
dweebui:
2023-12-06 20:07:37 +00:00
container_name: dweebui
2024-01-20 23:04:50 +00:00
image: lllllllillllllillll/dweebui:v0.20
environment:
NODE_ENV: production
2023-12-09 05:48:46 +00:00
PORT: 8000
2023-12-11 00:37:01 +00:00
SECRET: MrWiskers
restart: unless-stopped
ports:
- 8000:8000
volumes:
- dweebui:/app
- /var/run/docker.sock:/var/run/docker.sock
2023-12-06 20:07:37 +00:00
networks:
2024-01-08 02:29:56 +00:00
- dweebui_net
volumes:
dweebui:
2023-12-06 20:07:37 +00:00
networks:
2024-01-08 02:29:56 +00:00
dweebui_net:
2023-12-06 20:07:37 +00:00
driver: bridge
```
2023-12-11 00:37:01 +00:00
Compose setup:
2023-12-09 20:53:52 +00:00
2023-12-11 00:37:01 +00:00
* Paste the above content into a file named ```docker-compose.yml``` then place it in a folder named ```dweebui```.
* Open a terminal in the ```dweebui``` folder, then enter ```docker compose up -d```.
* You may need to use ```docker-compose up -d``` or execute the command as root with either ```sudo docker compose up -d``` or ```sudo docker-compose up -d```.
2023-12-06 20:07:37 +00:00
2023-12-14 08:40:10 +00:00
## Credits
2023-12-14 08:40:10 +00:00
* Dockerode and dockerode-compose by Apocas: https://github.com/apocas/dockerode
* UI was built using HTML and CSS elements from https://tabler.io/
2023-12-09 05:48:46 +00:00
* Apps template based on Portainer template provided by Lissy93: https://github.com/Lissy93/portainer-templates
* Icons from Walkxcode with some renames and additions: https://github.com/walkxcode/dashboard-icons
## Supporters
* MM (Patreon)