forked from AnalogJ/scrutiny
-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdocker-compose.dev.yaml
More file actions
20 lines (20 loc) · 717 Bytes
/
Copy pathdocker-compose.dev.yaml
File metadata and controls
20 lines (20 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
services:
scrutiny:
container_name: scrutiny-dev
image: ghcr.io/starosdev/scrutiny:develop-omnibus
cap_add:
- SYS_RAWIO
- SYS_ADMIN # Required for NVMe devices and MDADM
ports:
- "8081:8080"
volumes:
- ./config/dev:/opt/scrutiny/config
- ./influxdb/dev:/opt/scrutiny/influxdb
- /run/udev:/run/udev:ro
- /dev:/dev:ro
# MDADM: Mount host /proc/mdstat to /host/proc/mdstat since Docker
# blocks direct mounts into /proc. The collector checks this path first.
- /proc/mdstat:/host/proc/mdstat:ro
environment:
- TZ=America/Los_Angeles
- SCRUTINY_INFLUXDB_29_BACKUP_CONFIRMED=${SCRUTINY_INFLUXDB_29_BACKUP_CONFIRMED:-false}