Go to file
lllllllillllllillll a10371d0e1 newest features 2023-12-13 01:12:38 -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 Added 'Reset View' to dashCard 2023-12-13 01:04:56 -08:00
controllers Added Visibility icon to dashCard 2023-12-11 19:58:53 -08:00
database Added Visibility icon to dashCard 2023-12-11 19:58:53 -08:00
functions Container links now use ServerIP address 2023-12-12 21:03:37 -08:00
public Added 'Reset View' to dashCard 2023-12-13 01:04:56 -08:00
routes Added Visibility icon to dashCard 2023-12-11 19:58:53 -08:00
screenshots screenshots of v0.05 2023-11-16 20:09:27 -08:00
views Added 'Reset View' to dashCard 2023-12-13 01:04:56 -08:00
CHANGELOG.md newest features 2023-12-13 01:12:38 -08:00
Dockerfile Revert back to express-sessions for now 2023-12-11 01:28:48 -08:00
LICENSE Add files via upload 2023-12-08 13:55:30 -08:00
README.md added SECRET field to register 2023-12-10 16:37:01 -08:00
app.js Added 'Reset View' to dashCard 2023-12-13 01:04:56 -08:00
docker-compose.yaml Revert back to express-sessions for now 2023-12-11 01:28:48 -08:00
package-lock.json Added Visibility icon to dashCard 2023-12-11 19:58:53 -08:00
package.json Added Visibility icon to dashCard 2023-12-11 19:58:53 -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.08 ( 🔥 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)
  • 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)
  • VPN, VPS, and Firewall Toggles. (planned)
  • Offline Mode. (planned)

Setup

Docker Compose:

version: "3.9"
services:

  dweebui:
    container_name: dweebui
    image: lllllllillllllillll/dweebui:v0.08-dev
    # build:
    #   context: .
    environment:
      NODE_ENV: production
      PORT: 8000
      SECRET: MrWiskers
      #Proxy_Manager: enabled
    restart: unless-stopped
    ports:
      - 8000:8000
    volumes:
      - dweebui:/app
      - caddyfiles:/app/caddyfiles
      - /var/run/docker.sock:/var/run/docker.sock
      #- ./custom-templates.json:/app/custom-templates.json
      #- ./composefiles:/app/composefiles
    networks:
      - dweeb_network


volumes:
  dweebui:
  caddyfiles:


networks:
  dweeb_network:
    driver: bridge

Compose setup:

  • 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.

Using setup.sh:

Extract DweebUI.zip and navigate to /DweebUI
cd DweebUI
chmod +x setup.sh
sudo ./setup.sh

Credit