1
0

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 3 years have passed since last update.

Dockerのイメージファイルが消えないとき

Last updated at Posted at 2021-08-05

はじめに

RHEL7で、古いバージョンのdockerをアンインストールして、新しいDockerをインストールした際に、イメージファイルが消えないことがありました。

docker rmi [イメージID] #消えない
docker image prune -a #消えない
docker system prune #消えない

原因と解決策

原因

イメージのファイルが下記に残っていた。

/var/lib/docker/image/overlay2/imagedb/content/sha256/[イメージIDを含む文字列]

解決策

ファイルを削除する。

rm -f /var/lib/docker/image/overlay2/imagedb/content/sha256/[イメージIDを含む文字列]
1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?