18 lines
429 B
YAML
18 lines
429 B
YAML
services:
|
|
pulse:
|
|
image: rcourtman/pulse:latest
|
|
container_name: pulse
|
|
ports:
|
|
- "7655:7655"
|
|
volumes:
|
|
- pulse_config:/config
|
|
- pulse_data:/data
|
|
environment:
|
|
- PULSE_AUTH_USER=<user> # Username for web UI login
|
|
- PULSE_AUTH_PASS=<password> # Plain text or bcrypt hash (auto-hashed if plain)
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
pulse_config:
|
|
pulse_data: |