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?

Dockerの基本

Posted at

Dockerについて簡単なメモ(自分で学んだ内容)

プロセスを実行するまでの大まかな流れ

  1. Dockerfileを作成する
  2. 作成したDockerfileを使ってdocker buildをする
    • これをすることでイメージが作成される
    • コマンドはdocker build -t {タグ名} .でできる
  3. 作成したイメージでコンテナを作成し、実行する
    • コマンドはdocker run -d --name {コンテナ名} -p {バインド先のport番号}:{コンテナport番号} {使うイメージ名}
    • -dを使うことでバックグラウンド実行できる

プロセスを止めるにはdocker stop {コンテナ名}で止めることができる。コンテナは消えていない。
docker rm {コンテナ名}でコンテナを削除するとこができるが、データを永続化していない場合はそのデータたちも消えるので要注意

注意
Dockerfileを修正した場合は、docker buildからやり直す必要がある

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?