Docker registry 空間清除

目前透過一些 registry Web管理工具,都無法成功刪除 image 的空間,後來在網上找了一些資料,但最後面只有把空間從 52 GB 降到 47 GB

  1. 在 docker registry node 上面設定環境變數
    REGISTRY_STORAGE_DELETE_ENABLED: true

  2. 登入 registry container 執行
    /bin/registry garbage-collect /etc/docker/registry/config.yml

Reference:

https://github.com/docker/distribution/issues/2279