mirror of
https://github.com/sudoxnym/dashd.git
synced 2026-05-18 03:28:24 +00:00
update readme with compose examples
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
c0c2f56f2f
commit
8aa9d6a6ae
1 changed files with 28 additions and 4 deletions
32
README.md
32
README.md
|
|
@ -16,11 +16,34 @@ cyberpunk infrastructure dashboard with user authentication and docker deploymen
|
|||
## quick start
|
||||
|
||||
```bash
|
||||
# pull and run
|
||||
docker run -d -p 8085:8085 -v dashd_data:/data sudoxreboot/dashd
|
||||
|
||||
# or with compose
|
||||
curl -O https://raw.githubusercontent.com/sudoxnym/dashd/master/docker-compose.yml
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
dashboard available at `http://localhost:8085`
|
||||
|
||||
## docker compose
|
||||
|
||||
```yaml
|
||||
services:
|
||||
dashd:
|
||||
image: sudoxreboot/dashd:latest
|
||||
ports:
|
||||
- "8085:8085"
|
||||
volumes:
|
||||
- dashd_data:/data
|
||||
environment:
|
||||
- DASHD_SECRET=${DASHD_SECRET:-}
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
dashd_data:
|
||||
```
|
||||
|
||||
## configuration
|
||||
|
||||
set a custom jwt secret:
|
||||
|
|
@ -37,12 +60,13 @@ DASHD_SECRET=your-secret-here
|
|||
|
||||
## development
|
||||
|
||||
run without docker:
|
||||
build from source:
|
||||
|
||||
```bash
|
||||
pip install -r requirements.txt
|
||||
python backend.py &
|
||||
# serve dashboard.html on port 8085
|
||||
git clone https://github.com/sudoxnym/dashd.git
|
||||
cd dashd
|
||||
docker build -t dashd .
|
||||
docker run -d -p 8085:8085 dashd
|
||||
```
|
||||
|
||||
## architecture
|
||||
|
|
|
|||
Loading…
Reference in a new issue