Disk Size for Docker Image #10
-
|
Quick question, possibly a good addition to the FAQ: How much disk space does the tool occupy, when the docker image is included? I'm just curious as to how much real estate this takes up, does it need to reside on a separate thumb drive from a bootable ISO for example... Many thanks for this impressive tool! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
The current default runtime image is From the Docker manifest I get about 4.79 GB of compressed layers, roughly 4.46 GiB. Docker will also keep decompressed layer data, image metadata, pull cache, and ADscan workspaces, so the real disk budget should be higher than the pull size. I would not put it on the same small boot ISO unless that environment has persistent Docker storage with several spare GB. As a practical floor, budget more than 10 GB for Docker's data root if you want room for the image plus outputs/logs; more if you plan to keep multiple versions or workspaces. |
Beta Was this translation helpful? Give feedback.
The current default runtime image is
adscan/adscan-lite:latest.From the Docker manifest I get about 4.79 GB of compressed layers, roughly 4.46 GiB. Docker will also keep decompressed layer data, image metadata, pull cache, and ADscan workspaces, so the real disk budget should be higher than the pull size.
I would not put it on the same small boot ISO unless that environment has persistent Docker storage with several spare GB. As a practical floor, budget more than 10 GB for Docker's data root if you want room for the image plus outputs/logs; more if you plan to keep multiple versions or workspaces.