Skip to content

Instantly share code, notes, and snippets.

@jbales
Created December 23, 2017 23:14
Show Gist options
  • Select an option

  • Save jbales/2928c1ea0696d250ce68fe4675225087 to your computer and use it in GitHub Desktop.

Select an option

Save jbales/2928c1ea0696d250ce68fe4675225087 to your computer and use it in GitHub Desktop.
Shrink Docker Image File...
# (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