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 メモ

Last updated at Posted at 2019-11-22

自分用dockerメモ

マウント系

これがわかりやすい
https://qiita.com/supaiku2452/items/5d6e78d10094f64d269f

ホストとコンテナ間でソースを同期する

docker run --mount type=bind,src=$(pwd),dst=/app -it --rm --name {コンテナ名} イメージ名 /bin/bash

起動済みコンテナにアタッチ

これがわかりやすい
https://qiita.com/leomaro7/items/649732faf2f632419f11
起動済みコンテナにアタッチした後exitを打ってもコンテナが落ちて欲しくない場合はexec

docker exec -it {コンテナID | コンテナ名} /bin/bash
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?