0
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 3 years have passed since last update.

【Docker】コンテナの起動、コンテナ内で bash を起動、イメージを削除

Posted at

#はじめに

ターミナルでコンテナ内に入り、コマンドを試したいときの流れについて改めてまとめた。

#流れ
##docker build

docker build -t test .

docker build: Dockerfileを基に、Dockerコンテナーの起動、構成、Dockerイメージの作成まで一気に実行

-t test: -tオプションで任意のイメージ名をつける

.: 最後についているピリオドは、Dockerfileのあるディレクトリを指定する為。ピリオドはカレントディレクトリを示す

##docker run

docker run --rm -it test bash

--rm: コンテナ実行後に削除
-it: コンソールに結果を出力
bash: bashを起動

##docker rmi

docker rmi test

でイメージを指定して削除

##参考にさせて頂いた記事

Docker-docs-ja

##終わりに。
最後まで読んで頂きありがとうございます:bow_tone1:
転職の為、未経験の状態からReact,Railsを学習しております。継続して投稿していく中で、その為のインプットも必然的に増え、成長に繋がるかと考えています。
投稿の内容に間違っているところや、付け加えるべきところが多々あるかと思いますので、ご指摘頂けると幸いです。この記事を読んで下さりありがとうございました。
ありがとうございます!

0
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
0
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?