0
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, Docker compose コマンドメモ

Posted at
  • よく使う&忘れがちなdocker のコマンドを中心にメモ.

存在しているコンテナのうち,停止しているコンテナを起動させる

docker start (comtainer id)
ex) docker stop f4a7cfeb3445

起動しているコンテナを停止させる

docker stop (comtainer id)
ex) docker stop f4a7cfeb3445

今起動中のコンテナの一覧を表示

docker ps 

今存在している,起動中or停止中のコンテナの一覧を表示

docker ps -a 
0
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
0
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?