- - Meine eigenes Github repo
- github.com/MaximilianKoestler/duc-service
- duc.zevv.nl - Yes
Bei Synology gibt es ja den Storage Manager (Speicher-Analysator). Bei Ugreen scheint es noch nichts Vergleichbares zu geben. Auch fand ich kein 3th-Party Tool, welches mich zufriedenstellte. Basierend auf github.com/MaximilianKoestler/duc-service resp. dem Tool Duc habe ich daher mein eigenes Tool entwickelt:
GitHub - caco3/storage-analyzer: Continuously monitor and explore disk space
Continuously monitor and explore disk space. Contribute to caco3/storage-analyzer development by creating an account on GitHub.
github.com
Einbindung als docker compose projekt:
Code
volumes:
duc_database:
services:
duc-service:
image: caco3x/duc-service
environment:
# example: everyday at midnight
- SCHEDULE=0 0 * * *
# Set to true if a snapshot should be created on each docker container start
- RUN_SCAN_ON_STARTUP=false
# Folder/file patterns to be excluded (comma separated list without double quotes)
- EXCLUDE=proc sys dev run tmp temp usr proc
ports:
- 1280:80
volumes:
- type: bind
source: /volume1
target: /scan/volume1
read_only: true
- type: bind
source: /volume2
target: /scan/volume2
read_only: true
# store the database outside the container
- ./duc_database:/database
Display More
Weitere Details unter https://github.com/caco3/storage-analyzer