LoginSignup
0
1

More than 3 years have passed since last update.

Dockerとは

Posted at

◯Dockerとは?

 コンテナという技術を使いコンテナの中に環境構築し、コンテナの中で開発をするこの一連の流れを簡単に実装できるもの。

◯Dockerに関するコマンド

①docker login

 Dockerにログインするときに使用するコマンド

②docker pull [image]

 docker-imageをHostにpullするときに使用コマンド

③docker images

 Hostにあるdoker-imageの一覧を表示させるときに使用するコマンド

④docker run [image]

 Hostにあるdocker-imageからコンテナを作成するときに使用するコマンド

⑤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