Go to file
lllllllillllllillll 43a8c62099
v0.05 release date
2023-11-16 22:48:03 -08:00
.github Add files via upload 2023-10-31 21:18:10 -07:00
caddyfiles v0.05 2023-11-16 18:01:24 -08:00
components v0.05 2023-11-16 18:01:24 -08:00
controllers v0.05 2023-11-16 18:01:24 -08:00
database Starting v0.04 2023-11-05 18:19:17 -08:00
functions v0.05 2023-11-16 18:01:24 -08:00
public v0.05 pre-release 2023-11-12 13:30:56 -08:00
routes Add files via upload 2023-10-31 21:21:31 -07:00
screenshots new screenshots 2023-11-16 17:59:19 -08:00
views v0.05 2023-11-16 18:01:24 -08:00
CHANGELOG.md v0.05 release date 2023-11-16 22:48:03 -08:00
Dockerfile Starting v0.04 2023-11-05 18:19:17 -08:00
DweebUI.png Add files via upload 2023-11-01 00:55:38 -07:00
LICENSE Initial commit 2023-10-15 14:55:00 -07:00
README.md image size 2023-11-16 21:36:11 -08:00
app.js v0.05 2023-11-16 18:01:24 -08:00
compose.yaml v0.05 2023-11-16 18:01:24 -08:00
package-lock.json Starting v0.04 2023-11-05 18:19:17 -08:00
package.json Starting v0.04 2023-11-05 18:19:17 -08:00
setup.sh v0.03 2023-11-04 10:56:08 -07:00
templates.json v0.05 2023-11-16 18:01:24 -08:00

README.md

DweebUI

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

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

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.
  • 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)
  • Pure javascript. No frameworks or typescript.
  • 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)

Setup

  • Docker compose.yaml:
services:
  dweebui:
    container_name: DweebUI
    image: lllllllillllllillll/dweebui:v0.05
    restart: unless-stopped
    ports:
      - 8000:8000
    depends_on:
      - cache
    links:
      - cache
    volumes:
      - dweebui:/app
      - ./caddyfiles/Caddyfile:/app/caddyfiles/Caddyfile
      - ./caddyfiles/sites:/app/caddyfiles/sites
      - /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 eYVX7EwVmmxKPCDmwMtyKVge8oLd2t81
    volumes: 
      - cache:/data
  proxy:
    container_name: DweebProxy
    image: caddy:2.4.5-alpine
    depends_on:
      - dweebui
    restart: unless-stopped
    network_mode: host
    volumes:
      - caddy:/data
      - caddy:/config
      - ./caddyfiles/Caddyfile:/etc/caddy/Caddyfile
      - ./caddyfiles/sites:/etc/caddy/sites

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

Credit