mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
feat: Add scrutiny template (#500)
* Adds scrutiny template * ran npm run process-meta * feat(scrutiny): add Proxmox usage instructions * Refactor port mappings in docker-compose.yml Updated port mappings to remove quotes in docker-compose.yml.
This commit is contained in:
55
blueprints/scrutiny/docker-compose.yml
Normal file
55
blueprints/scrutiny/docker-compose.yml
Normal file
@@ -0,0 +1,55 @@
|
||||
services:
|
||||
scrutiny:
|
||||
restart: unless-stopped
|
||||
container_name: scrutiny
|
||||
image: ghcr.io/analogj/scrutiny:master-omnibus
|
||||
cap_add:
|
||||
- SYS_RAWIO
|
||||
ports:
|
||||
- 8080 # webapp
|
||||
- 8086 # influxDB admin
|
||||
volumes:
|
||||
- /run/udev:/run/udev:ro
|
||||
- ./config:/opt/scrutiny/config
|
||||
- ./influxdb:/opt/scrutiny/influxdb
|
||||
devices:
|
||||
- "/dev/sda"
|
||||
- "/dev/sdb"
|
||||
|
||||
# PROXMOX USERS: Proxmox LXCs don't have access to S.M.A.R.T data, while this may be possible on VMs using PCI passthrough,
|
||||
# there's another way which is to run the scrutiny collector on proxmox host and have it send data to the scrutiny webapp running in an LXC or VM
|
||||
# so basically you can use the following commented docker-compose (web+db) and run the collector directly on the proxmox host (guide: https://github.com/AnalogJ/scrutiny/blob/master/docs/INSTALL_HUB_SPOKE.md#setting-up-a-spoke-without-docker)
|
||||
|
||||
# services:
|
||||
# influxdb:
|
||||
# restart: unless-stopped
|
||||
# image: influxdb:2.2
|
||||
# ports:
|
||||
# - '8086:8086'
|
||||
# volumes:
|
||||
# - './influxdb:/var/lib/influxdb2'
|
||||
# healthcheck:
|
||||
# test: ["CMD", "curl", "-f", "http://localhost:8086/health"]
|
||||
# interval: 5s
|
||||
# timeout: 10s
|
||||
# retries: 20
|
||||
#
|
||||
#
|
||||
# web:
|
||||
# restart: unless-stopped
|
||||
# image: 'ghcr.io/analogj/scrutiny:master-web'
|
||||
# ports:
|
||||
# - '8080:8080'
|
||||
# volumes:
|
||||
# - './config:/opt/scrutiny/config'
|
||||
# environment:
|
||||
# SCRUTINY_WEB_INFLUXDB_HOST: 'influxdb'
|
||||
# depends_on:
|
||||
# influxdb:
|
||||
# condition: service_healthy
|
||||
# healthcheck:
|
||||
# test: ["CMD", "curl", "-f", "http://localhost:8080/api/health"]
|
||||
# interval: 5s
|
||||
# timeout: 10s
|
||||
# retries: 20
|
||||
# start_period: 10s
|
||||
BIN
blueprints/scrutiny/scrutiny.png
Normal file
BIN
blueprints/scrutiny/scrutiny.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 42 KiB |
1
blueprints/scrutiny/template.toml
Normal file
1
blueprints/scrutiny/template.toml
Normal file
@@ -0,0 +1 @@
|
||||
[config]
|
||||
16
meta.json
16
meta.json
@@ -5216,6 +5216,22 @@
|
||||
"self-hosted"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "scrutiny",
|
||||
"name": "Scrutiny",
|
||||
"version": "latest",
|
||||
"description": "Hard Drive S.M.A.R.T Monitoring, Historical Trends & Real World Failure Thresholds",
|
||||
"logo": "scrutiny.png",
|
||||
"links": {
|
||||
"github": "https://github.com/AnalogJ/scrutiny/",
|
||||
"website": "",
|
||||
"docs": ""
|
||||
},
|
||||
"tags": [
|
||||
"monitoring",
|
||||
"NAS"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "scrypted",
|
||||
"name": "Scrypted",
|
||||
|
||||
Reference in New Issue
Block a user