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

Last updated at Posted at 2025-04-11

起動オプション

  • d デーモン化する。これつけないと1回実行で終わる
  • i 標準入力(stdin)を維持する
  • t 疑似ターミナルを割り当てる
    実行例
docker run -dit ubuntu bash

#後でログイン
docker exec -it ubuntu bash

ボリュームのマウント

ボリュームマウント

Docker Engine管理のボリュームをマウントする

docker volume create hoge
docker volume rm hoge

#オプション指定
-v hoge:コンテナ内のパス

バインドマウント

ホスト側のディレクトリやファイルをマウントする

#オプション指定
-v ホスト側のパス:コンテナ内のパス
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?