Sign inSign up

alcapone1933/scrutiny

By alcapone1933

Updated 6 months ago

Image
0

6.0K

alcapone1933/scrutiny repository overview

scrutiny

https://github.com/AnalogJ/scrutiny

Docker CLI

docker run -d \ 
  -p 8080:8080 -p 8086:8086 \
  -v `pwd`/scrutiny:/opt/scrutiny/config \
  -v `pwd`/influxdb2:/opt/scrutiny/influxdb \
  -v /run/udev:/run/udev:ro \
  --cap-add SYS_RAWIO \
  --cap-add SYS_ADMIN \
  --device=/dev/sda \
  --device=/dev/sdb \
  --name scrutiny \
  --restart=lways \
  alcapone1933/scrutiny:latest

  --privileged \

Docker Compose


services:
  scrutiny:
    image: alcapone1933/scrutiny:latest
    container_name: scrutiny
    restart: always
    # privileged: true
    cap_add:
      - SYS_RAWIO
      - SYS_ADMIN
    ports:
      - "8080:8080" # webapp
      - "8086:8086" # influxDB admin
    volumes:
      - /run/udev:/run/udev:ro
      - ./config:/opt/scrutiny/config
      - ./influxdb:/opt/scrutiny/influxdb
    devices:
      - "/dev/sda"
      - "/dev/sdb"

Tag summary

Content type

Image

Digest

sha256:18beec394

Size

175.7 MB

Last updated

6 months ago

docker pull alcapone1933/scrutiny