Skip to content

Commit

Permalink
v0.04.md
Browse files Browse the repository at this point in the history
updated instructions for setup script or docker
  • Loading branch information
lllllllillllllillll authored Nov 11, 2023
1 parent cb7f9e5 commit 0659999
Showing 1 changed file with 33 additions and 3 deletions.
36 changes: 33 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,40 @@ Requirements: Docker

## Setup

* Download DweebUI.zip.
* Docker compose.yaml:
```
Extract DweebUI.zip and navigate to /DweebUI/
CMD: docker compose up --build
services:
  dweebui:
    container_name: DweebUI
    image: lllllllillllllillll/dweebui:v0.04
    ports:
      - 8000:8000
    depends_on:
      - cache
    links:
      - cache
    volumes:
      - dweebui:/app
      - /var/run/docker.sock:/var/run/docker.sock
  cache:
    container_name: DweebCache
    image: redis:6.2-alpine
    restart: always
    command: redis-server --save 20 1 --loglevel warning --requirepass eYVX7EwVmmxKPCDmwMtyKVge8oLd2t81
    volumes:
      - cache:/data
 
volumes:
  dweebui:
  cache:
```

* Using setup.sh:
```
Extract DweebUI.zip and navigate to /DweebUI
cd DweebUI
chmod +x setup.sh
sudo ./setup.sh
```
Once setup is complete, I recommend installing Caddy first, then something like code-server.
The template is very rough.
Expand Down

0 comments on commit 0659999

Please sign in to comment.