You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I am bootstrapping a container, I'm never too sure how big that container image needs to be. However, once I'm done bootstrapping it, I should never need to make changes to it.
It would be nice to have a singularity shrink command, which will shrink a container image to its smallest size.
It's actually possible to do this in shell today, with something like this script:
When I am bootstrapping a container, I'm never too sure how big that container image needs to be. However, once I'm done bootstrapping it, I should never need to make changes to it.
It would be nice to have a
singularity shrink
command, which will shrink a container image to its smallest size.It's actually possible to do this in shell today, with something like this script:
The above shell is inefficient (space utilization is up to 2x the image size), but safe (the original image isn't deleted until the very end).
But, it would probably be better implemented in the same way as
singularity expand
.The text was updated successfully, but these errors were encountered: