Created
December 23, 2017 23:14
-
-
Save jbales/2928c1ea0696d250ce68fe4675225087 to your computer and use it in GitHub Desktop.
Shrink Docker Image File...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # (https://forums.docker.com/t/cleaning-up-docker-for-mac/17894) | |
| # | |
| # ~/Library/Containers/com.docker.docker/Data/com.docker.driver.amd64-linux/Docker.qcow2 | |
| docker run -it --rm -v /:/host alpine chroot /host /bin/sh -c 'dd if=/dev/zero of=/var/lost+found/zeroes; rm /var/lost+found/zeroes' | |
| cd ~/Library/Containers/com.docker.docker/Data/com.docker.driver.amd64-linux | |
| /Applications/Docker.app/Contents/MacOS/qemu-img convert -p -O qcow2 Docker.qcow2 Docker-new.qcow2 | |
| mv Docker-new.qcow2 Docker.qcow2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment