![]() |
1 gadu atpakaļ | |
---|---|---|
.github | 1 gadu atpakaļ | |
components | 1 gadu atpakaļ | |
controllers | 1 gadu atpakaļ | |
database | 1 gadu atpakaļ | |
public | 1 gadu atpakaļ | |
router | 1 gadu atpakaļ | |
views | 1 gadu atpakaļ | |
.gitignore | 1 gadu atpakaļ | |
CHANGELOG.md | 1 gadu atpakaļ | |
Dockerfile | 1 gadu atpakaļ | |
LICENSE | 1 gadu atpakaļ | |
README.md | 1 gadu atpakaļ | |
app.js | 1 gadu atpakaļ | |
docker-compose.yaml | 1 gadu atpakaļ | |
package-lock.json | 1 gadu atpakaļ | |
package.json | 1 gadu atpakaļ | |
templates.json | 1 gadu atpakaļ |
DweebUI is a web interface for managing Docker, with a zero-config dashboard for your containers.
Alpha v0.20 ( :fire: Experimental :fire: )
:warning: DweebUI is a management interface and should not be directly exposed to the internet:warning:
:warning: External access should be done through a VPN or secure SSH connection :warning:
Docker Compose:
version: "3.9"
services:
dweebui:
container_name: dweebui
# image: lllllllillllllillll/dweebui:v0.20
build:
context: .
environment:
NODE_ENV: production
PORT: 8000
SECRET: MrWiskers
restart: unless-stopped
ports:
- 8000:8000
volumes:
- dweebui:/app
- /var/run/docker.sock:/var/run/docker.sock
networks:
- dweebui_net
volumes:
dweebui:
networks:
dweebui_net:
driver: bridge
Compose setup:
docker-compose.yml
then place it in a folder named dweebui
.dweebui
folder, then enter docker compose up -d
.docker-compose up -d
or execute the command as root with either sudo docker compose up -d
or sudo docker-compose up -d
.