DweebUI
v0.60 (June 9th 2024) - Permissions system and import templates
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 및 MacOS 설정
설정 설정 :
docker-compose.yml 이라는 파일에 붙여 넣은 다음 dweebui 라는 폴더에 배치하십시오.dweebui 폴더에서 터미널을 열고 docker compose up -d 입력하십시오.docker-compose up -d 사용하거나 sudo docker compose up -d 또는 sudo docker-compose up -d 사용하여 명령을 루트로 실행해야 할 수도 있습니다.구성:
PORT - 서비스가 시작되는 어떤 포트가 시작되는지를 지정합니다. 기본값은 8000 입니다.SECRET - 등록 페이지에서 사용하는 공유 비밀.