mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-04-28 11:30:15 +00:00
Update docs with missing config, API endpoints, and Docker Compose
This commit is contained in:
parent
4e0d971fa9
commit
3c92c38b27
3 changed files with 86 additions and 3 deletions
|
|
@ -23,6 +23,28 @@ docker run -d \
|
|||
rcourtman/pulse:latest
|
||||
```
|
||||
|
||||
### Docker Compose
|
||||
Create a `docker-compose.yml` file:
|
||||
|
||||
```yaml
|
||||
services:
|
||||
pulse:
|
||||
image: rcourtman/pulse:latest
|
||||
container_name: pulse
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "7655:7655"
|
||||
volumes:
|
||||
- pulse_data:/data
|
||||
- /var/run/docker.sock:/var/run/docker.sock # Optional: Monitor local Docker
|
||||
environment:
|
||||
- PULSE_AUTH_USER=admin
|
||||
- PULSE_AUTH_PASS=secret123
|
||||
|
||||
volumes:
|
||||
pulse_data:
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 🛠️ Installation Methods
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue