0
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.

使わないコンテナとディレクトリを削除する方法

Last updated at Posted at 2021-07-21

Dockerで環境構築しててポートが被ったりするたびに.envを書き換えるのもいいけど、とにかくコンテナがごちゃごちゃしてイヤな時、ディレクトリごと消して再出発したいときに使う呪文の順番

docker ps
稼働しているコンテナを確認(停止しているものも見たい場合は末尾に-aを付けて)

docker stop [containerID]
コンテナを指定して止める(複数消したい場合はIDごとにスペース空ければ一気に消せる)
止めておけばとりあえずlocalhostのポート被りは起こらないはず

docker rm [containerID]
必要に応じてコンテナ削除

cd ../
ディレクトリ移動

rm -r [directory]
ディレクトリ削除(無理そうならfinderから消してヨシ!)


*imageもコンテナも全部消したいときに使う呪文

docker-compose down --rmi all --volumes --remove-orphans

0
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
0
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?