From a74102f5541e5e6432665c7d1c61a5414cce2c3c Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Mon, 4 Apr 2022 18:13:05 +0200 Subject: [PATCH 1/2] Add scrutiny --- scrutiny/README.md | 4 ++++ scrutiny/docker-compose.yaml | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 scrutiny/README.md create mode 100644 scrutiny/docker-compose.yaml diff --git a/scrutiny/README.md b/scrutiny/README.md new file mode 100644 index 0000000..dc47ab5 --- /dev/null +++ b/scrutiny/README.md @@ -0,0 +1,4 @@ +# scrutiny + +Hard Drive S.M.A.R.T Monitoring, Historical Trends & Real World Failure Thresholds + diff --git a/scrutiny/docker-compose.yaml b/scrutiny/docker-compose.yaml new file mode 100644 index 0000000..488ec6c --- /dev/null +++ b/scrutiny/docker-compose.yaml @@ -0,0 +1,35 @@ +version: "3" + +services: + scrutiny: + image: lscr.io/linuxserver/scrutiny + container_name: scrutiny + restart: unless-stopped + cap_add: + - SYS_RAWIO + - ${NO_NVME:-SYS_ADMIN} # only needed for nvme drives + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Berlin + - SCRUTINY_API_ENDPOINT=http://localhost:8080 + - SCRUTINY_WEB=true + - SCRUTINY_COLLECTOR=true + - GIN_MODE=release + volumes: + - scrutiny_config:/config + - /run/udev:/run/udev:ro + ports: + - 8081:8080 + devices: + - ${first_device:-/dev/tty1} + - ${second_device:-/dev/tty2} + - ${third_device:-/dev/tty3} + - ${fourth_device:-/dev/tty4} + - ${fifth_device:-/dev/tty5} + # - /dev/sda:/dev/sda + # - /dev/disk/by-id/id-of-the-drive:/dev/sda + # - /dev/nvme1n1:/dev/nvme1n1 + +volumes: + scrutiny_config: From fbeafae90566789eecfb38401cc21619428241f0 Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Mon, 4 Apr 2022 18:19:04 +0200 Subject: [PATCH 2/2] Add port mapping overview --- ports.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ports.md diff --git a/ports.md b/ports.md new file mode 100644 index 0000000..43ca0f5 --- /dev/null +++ b/ports.md @@ -0,0 +1,8 @@ +# Used ports mapped to the host + +| Port | Service | +| --- | --- | +| 222 | gitea | +| 8000 | portainer | +| 8080 | firefly-fints-importer | +| 8081 | scrutiny |