Skip to content

Commit

Permalink
Update index.qmd
Browse files Browse the repository at this point in the history
  • Loading branch information
kozo2 authored May 31, 2024
1 parent 86d624f commit 694ee36
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docker/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,27 @@ sh は alpine コンテナの中にある /bin/sh コマンドを実行してい
- `docker container run` コマンドは、イメージからコンテナを作成し、その中でコマンドを実行します。
- `docker container run` コマンドを使用すると、コンテナはデフォルトのアクション、ユーザー指定のアクション、または対話的に使用されるシェルを実行できます。

# コンテナのクリーンアップ

## クエスチョンと目標
- コンピューター上の Docker コンテナーと対話するにはどうすればよいですか?
- コンテナとイメージを管理するにはどうすればよいですか?
- 実行中のコンテナと完了したコンテナを一覧表示する方法を説明してみましょう。
- コンテナイメージを一覧表示して削除する方法を理解しましょう。

## [付箋で成功確認]イメージの削除
- `docker image ls`
- `docker image rm イメージのID`

## 今どのコンテナが走っているのか?
- `docker container ls`
- `docker ps`

## すべてのコンテナを確認する
- `docker container ls --all`



# Docker Hub

## Docker Hubでコンテナを探す
Expand Down

0 comments on commit 694ee36

Please sign in to comment.