Без опису

lllllllillllllillll 7d0bbc27fa Update README.md 11 місяців тому
.github f46648e598 Bump docker/build-push-action from 5 to 6 1 рік тому
controllers 109d9bc171 fixed details modal 1 рік тому
database a73a89b250 mostly working permission system. 1 рік тому
public c71f330b49 added compose file import 1 рік тому
router 29d630f1dd functioning 'new volume' modal 1 рік тому
screenshots 8d9eb9981a improvements for multi-user and permissions 1 рік тому
templates b4d472f414 v0.60 release 1 рік тому
utils cec389702c fixed install 1 рік тому
views b4d472f414 v0.60 release 1 рік тому
.dockerignore 57f080ec0d empty folders fix 1 рік тому
.gitignore 03be1187ef empty folder fix 1 рік тому
CHANGELOG.md b4d472f414 v0.60 release 1 рік тому
Dockerfile 319aab60f5 added ability to view custom json templates 1 рік тому
LICENSE 7f6370c891 Add files via upload 1 рік тому
README.md 7d0bbc27fa Update README.md 11 місяців тому
compose.yaml a67f65996e Update compose.yaml 1 рік тому
package-lock.json d0db603efe updated tar to 6.2.1 1 рік тому
package.json 6aa325ed8e v0.60 pre-release 1 рік тому
server.js 842f83ea91 reduced by one line 1 рік тому

README.md

DweebUI Beta v0.60 ( :fire: Experimental :fire: )

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
      # 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)