18 lines
382 B
YAML
18 lines
382 B
YAML
version: '3.5'
|
|
|
|
services:
|
|
scrutiny:
|
|
container_name: scrutiny
|
|
image: ghcr.io/analogj/scrutiny:master-omnibus
|
|
cap_add:
|
|
- SYS_RAWIO
|
|
ports:
|
|
- "1080:8080" # webapp
|
|
- "1086:8086" # influxDB admin
|
|
volumes:
|
|
- /run/udev:/run/udev:ro
|
|
- ./config:/opt/scrutiny/config
|
|
- ./influxdb:/opt/scrutiny/influxdb
|
|
devices:
|
|
- "/dev/sda"
|