622
529

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

Dockerでホストとコンテナ間でのファイルコピー

Last updated at Posted at 2014-05-31

コンテナからホストへのコピー

docker cp コマンドが使えます。

# コンテナIDを調べる
$ sudo docker ps

$ sudo docker cp <コンテナID>:/etc/my.cnf my.cnf

ホストからコンテナへのコピー

(追記:2016/01/22)
Docker 1.8からホストからコンテナへのコピーも docker cp コマンドでサポートされるようになりました!
https://docs.docker.com/engine/reference/commandline/cp/

$ sudo docker cp my.cnf <コンテナID>:/etc/my.cnf

こちらは docker cp コマンドで実現することはできません。
現状、Dockerfile に記述して、コピーするしかないみたいです。

ADD my.cnf /etc/my.cnf

ちなみに、docker cpコマンドでホストからコンテナへのコピーをサポートしてほしいという要望がコミュニティ内でも根強くあるみたいです。

dotcloud/docker #905

622
529
3

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
622
529

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?