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 1 year has passed since last update.

【docker】dockerコマンド その2

Posted at

dockerコマンドを備忘録としてメモしておく。各コマンドのオプションなどの詳細についてはdocker docsを参照。

コンテナ

コンテナの起動・停止・再起動

// 起動
docker start <オプション> <コンテナID>
// 停止
docker stop <オプション> <コンテナID>
// 再起動
docker restart <オプション> <コンテナID>

【参考:起動(start)停止(stop)再起動(restart)

コンテナからログを取得

docker logs <オプション> <コンテナID>

【参考:ログ取得(logs)

実行中コンテナ内でコマンド実行

docker exec <オプション> <コンテナID> <コマンド>

【参考:コンテナ内でコマンド実行(exec)

コンテナを起動してコンテナ内で操作

docker run -it <イメージID>
1
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
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?