4
1

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 2020-07-07

#はじめに
Dockerコンテナ環境で開発を進めていた際に、使う機会が多かったコマンド一式をまとめました。
本記事が皆様の一助になりますと幸いです。

#docker-compose.ymlの変更を反映
イメージ: 再構築の必要なし
コンテナ: 再構築の必要あり docker-compose up -d

#Dockerfileの変更を反映
イメージ: 再構築の必要あり docker-compose build
コンテナ: 再構築の必要あり docker-compose up -d

#起動しているコンテナの停止・削除
全コンテナ停止: docker stop $(docker ps -q)
全コンテナ削除: docker rm $(docker ps -q -a)
全イメージ削除: docker rmi $(docker images -q)

#参考文献
Docker Composeにおける各種ファイルの変更時の反映
https://qiita.com/subretu/items/5857628534b53f29f5a3
一発ですべてのDockerコンテナを停止・削除、イメージの削除をする
https://qiita.com/shisama/items/48e2eaf1dc356568b0d7

4
1
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
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?