Go to file
lllllllillllllillll 234bcd7afa
Delete controllers/register.js
2023-12-03 16:22:22 -08:00
.github Update dependabot.yml 2023-11-19 18:12:08 -05:00
caddyfiles Delete caddyfiles/sites/folder.txt 2023-11-17 15:12:09 -08:00
components Viewable container logs 2023-12-03 14:24:30 -08:00
controllers Delete controllers/register.js 2023-12-03 16:22:22 -08:00
database Starting v0.04 2023-11-05 18:19:17 -08:00
functions Viewable container logs 2023-12-03 14:24:30 -08:00
public Viewable container logs 2023-12-03 14:24:30 -08:00
routes Viewable container logs 2023-12-03 14:24:30 -08:00
screenshots screenshots of v0.05 2023-11-16 20:09:27 -08:00
views Viewable container logs 2023-12-03 14:24:30 -08:00
CHANGELOG.md v0.06 2023-11-24 00:52:49 -08:00
Dockerfile revert dependabot change 2023-11-22 17:13:56 -08:00
DweebUI.png Add files via upload 2023-11-01 00:55:38 -07:00
LICENSE
README.md updated compose and credits 2023-11-26 17:23:50 -08:00
app.js Viewable container logs 2023-12-03 14:24:30 -08:00
compose.yaml env.PORT 2023-11-26 17:18:43 -08:00
package-lock.json systeminformation 5.21.17 to 5.21.18 2023-11-25 00:29:22 -08:00
package.json systeminformation 5.21.17 to 5.21.18 2023-11-25 00:29:22 -08:00
setup.sh v0.03 2023-11-04 10:56:08 -07:00
templates.json v0.06 2023-11-24 00:46:05 -08:00

README.md

DweebUI

DweebUI is a simple Docker web interface created with javascript and node.js

Pre-Pre-Pre-Pre-Pre Alpha v0.07 ( 🔥 Experimental. Don't install on any servers you care about 🔥 )

GitHub Stars GitHub License GitHub Activity

  • I haven't used Github very much and I'm still new to javascript.
  • This is the first project I've ever released and I'm sure it's full of plenty of bugs and mistakes.
  • I probably should have waited a lot longer to share this :|

Features

  • Dashboard provides server metrics (cpu, ram, network, disk) and container controls on a single page.
  • Light/Dark Mode.
  • Easy to install app templates.
  • Automatically persists data in docker volumes if bind mount isn't used.
  • Proxy manager for Caddy. (Optional)
  • Partial Portainer Template Support (Network Mode, Ports, Volumes, Enviroment Variables, Labels, Commands, Restart Policy, Nvidia Hardware Acceleration).
  • Multi-User built-in.
  • User pages: Shortcuts, Requests, Support. (planned)
  • Support for Windows, Linux, and MacOS.
  • Import compose files. (planned)
  • Javascript, Node.js, and Express.
  • Templates.json maintains compatability with Portainer, allowing you to use the template without needing to use DweebUI.
  • Manage your Docker networks, images, and volumes. (planned)
  • Preset variables. (planned)
  • VPN, VPS, and Firewall Toggles. (planned)
  • Offline Mode. (planned)

Setup

  • Docker compose.yaml:
services:
  dweebui:
    container_name: DweebUI
    image: lllllllillllllillll/dweebui:v0.07-dev
    environment:
      PORT: 8000
      REDIS_PASS: replace_with_password_for_redis
      # Proxy_Manager: enabled
    restart: unless-stopped
    ports:
      - 8000:8000
    depends_on:
      - cache
    links:
      - cache
    volumes:
      - dweebui:/app
      - caddyfiles:/app/caddyfiles
      - /var/run/docker.sock:/var/run/docker.sock
  cache:
    container_name: DweebCache
    image: redis:6.2-alpine
    restart: always
    command: redis-server --save 20 1 --loglevel warning --requirepass replace_with_password_for_redis
    volumes: 
      - cache:/data

volumes:
  dweebui:
  cache:
  caddyfiles:
  • Using setup.sh:
Extract DweebUI.zip and navigate to /DweebUI
cd DweebUI
chmod +x setup.sh
sudo ./setup.sh

Credit