Identify inactive and old Docker deployments for potential removal:
Identifies inactive Docker resources and estimates cleanup savings without removing anything.
/plugin marketplace add danielrosehill/linux-server-plugin/plugin install linux-desktop-mgmt@danielrosehilldocker/Identify inactive and old Docker deployments for potential removal:
docker imagesdocker images -f "dangling=true"docker ps -a --filter "status=exited"docker volume ls -f "dangling=true"docker system dfIMPORTANT: DO NOT remove anything automatically. Only identify candidates.
Provide Daniel with:
docker image prune -a (remove unused images)docker volume prune (remove unused volumes)docker container prune (remove stopped containers)Require explicit approval before any deletions
Note: Daniel uses atomic deployments with one GitHub repo per service. Verify repos are pushed before removing local deployments.