DweebUI is a WebUI for managing your containers. Simple setup, a dynamically updating dashboard, and a multi-user permission system.
Find a file
dependabot[bot] 1d31fd12f2
Bump systeminformation from 5.22.9 to 5.23.5
Bumps [systeminformation](https://github.com/sebhildebrandt/systeminformation) from 5.22.9 to 5.23.5.
- [Changelog](https://github.com/sebhildebrandt/systeminformation/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sebhildebrandt/systeminformation/compare/v5.22.9...v5.23.5)

---
updated-dependencies:
- dependency-name: systeminformation
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-08-26 19:37:57 +00:00
.github Bump docker/build-push-action from 5 to 6 2024-06-17 19:56:57 +00:00
controllers fixed details modal 2024-06-08 16:53:28 -07:00
database mostly working permission system. 2024-03-26 20:38:57 -07:00
public added compose file import 2024-05-12 01:30:37 -07:00
router functioning 'new volume' modal 2024-05-30 00:58:19 -07:00
screenshots improvements for multi-user and permissions 2024-03-21 23:59:45 -07:00
templates v0.60 release 2024-06-09 01:24:27 -07:00
utils fixed install 2024-05-18 13:13:40 -07:00
views v0.60 release 2024-06-09 01:24:27 -07:00
.dockerignore empty folders fix 2024-05-20 12:08:37 -07:00
.gitignore empty folder fix 2024-05-20 19:10:20 -07:00
CHANGELOG.md v0.60 release 2024-06-09 01:24:27 -07:00
compose.yaml Update compose.yaml 2024-06-15 02:27:08 -07:00
Dockerfile added ability to view custom json templates 2024-05-06 00:54:19 -07:00
LICENSE Add files via upload 2023-12-08 13:55:30 -08:00
package-lock.json Bump systeminformation from 5.22.9 to 5.23.5 2024-08-26 19:37:57 +00:00
package.json Bump systeminformation from 5.22.9 to 5.23.5 2024-08-26 19:37:57 +00:00
README.md Add docs for environment variables 2024-07-08 08:56:20 -04:00
server.js reduced by one line 2024-06-04 23:45:17 -07:00

DweebUI Beta v0.60 ( 🔥 Experimental 🔥 )

Free and Open-Source WebUI For Managing Your Containers.

Features

  • A dynamically updating dashboard that displays server metrics along with container metrics and container controls.
  • Multi-user support with permissions system.
  • Container actions: Start, Stop, Pause, Restart, View Details, View Logs.
  • Windows, Linux, and MacOS compatable.
  • Light/Dark Mode.
  • Mobile Friendly.
  • Manage your Docker networks, images, and volumes.
  • Easy to install app templates.
  • Docker Compose Support.
  • Update containers (planned).
  • Templates.json maintains compatability with Portainer, allowing you to use the template without needing to use DweebUI.
  • Preset variables (planned).
  • Themes (planned).

About

  • I started this as a personal project to get more familiar with Javascript and Node.js, so there may be some rough edges and spaghetti code.
  • I'm open to any contributions but you may want to wait until I reach v1.0 first.
  • Please post issues and discussions so I know what bugs and features to focus on.
  • DweebUI is a management interface and should not be directly exposed to the internet.

Setup

Docker Compose:

version: "3.9"
services:
  dweebui:
    container_name: dweebui
    image: lllllllillllllillll/dweebui
    environment:
      PORT: 8000
      SECRET: MrWiskers
    restart: unless-stopped
    ports:
      - 8000:8000
    volumes:
      - dweebui:/app/config
      # Docker socket
      - /var/run/docker.sock:/var/run/docker.sock
      # Podman socket
      #- /run/podman/podman.sock:/var/run/docker.sock

    networks:
      - dweebui_net

volumes:
  dweebui:

networks:
  dweebui_net:
    driver: bridge

Windows and MacOS Setup

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.

Configuration:

  • PORT - Specifies which port the service binds to on startup. Default is 8000.
  • SECRET - A shared secret used by the registration page.

Credits

Supporters

  • MM (Patreon)
  • PD (Buymeacoffee)