7
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

docker for Mac対象でディスク削減

Last updated at Posted at 2017-02-27

これ叩いたら、10GBぐらいディスク空いた。素晴らしい。
docker古いと、docker system prune ないと思うから消してね。

docker-disk-optimize.sh
# !/bin/bash
echo y | docker system prune
cd ~/Library/Containers/com.docker.docker/Data/com.docker.driver.amd64-linux || exit
mv Docker.qcow2 Docker.qcow2.org
qemu-img convert -O qcow2 Docker.qcow2.org Docker.qcow2
ls -lh Docker.qcow2 Docker.qcow2.org
rm Docker.qcow2.org
結果
./docker-disk-optimize.sh

WARNING! This will remove:
        - all stopped containers
        - all volumes not used by at least one container
        - all networks not used by at least one container
        - all dangling images
Are you sure you want to continue? [y/N] Total reclaimed space: 4.21 GB

-rw-r--r--  1 t00114  CATK\Domain Users   7.9G  2 27 13:45 Docker.qcow2
-rw-r--r--  1 t00114  CATK\Domain Users   16.2G  2 27 13:33 Docker.qcow2.org

参考

[Docker] docker.qcow2のサイズを小さくする回避策 – しゃまとんのたね http://shamaton.orz.hm/blog/archives/326

7
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?