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のvolumeが使用中で消せない時

Last updated at Posted at 2020-07-06

##使用環境

Windows10
Docker Desktop for Windows version 2.3.0.3

##トラブル内容

Dcokerのvolumeが使用中で消せない

docker-compose.ymlでvolumeを指定してデータの永続化をした際など、環境を作り直したくてvolumeも消去したいのに、消去できなかった事があったので覚書

無題1.png
  • Docker-compose down -v で消そうと思ったけどvolumeが使用中で消せない
  • docker volume rm -f 消したいvolume名 で消そうと思ったけどvolumeが使用中で消せない
  • docker volume prune で消そうと思ったけどvolumeが使用中で消せない
  • docker-compose ps やdocker psでも使用しているコンテナが見当たらない

↑見えていないコンテナがありそうな気配

トラブル対処

強制的にコンテナを削除してみたら、volumeを握っていると思われるコンテナも消えて、無事volumeの削除もできました。

docker container prune docker volume rm -f 消したいvolume名

1
0
1

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?