12 lines
376 B
YAML
12 lines
376 B
YAML
version: '3.5'
|
|
|
|
services:
|
|
dashdot:
|
|
image: mauricenino/dashdot:latest
|
|
container_name: dashdot
|
|
restart: unless-stopped
|
|
privileged: true # Wichtig, damit er Hardware-Infos (Temp, CPU) lesen darf
|
|
ports:
|
|
- '8081:3001' # Wir nutzen 8081, da 8080 schon vom FileBrowser belegt ist
|
|
volumes:
|
|
- /:/mnt/host:ro # Liest Host-Infos im "Read-Only" Modus |