Nice image! I wrapped it into a script so I can select the path: ```bash #!/bin/bash if [[ $# -ne 1 ]]; then echo "Missing parameter: <path to scan>" exit 1 fi docker run --rm -it -v $1:/mnt/root bytesco/ncdu /mnt/root ```