18
16

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 2018-10-08

環境

Ubuntu 14.04 LTS
Docker version 18.06.1-ce, build e68fc7a

#方法

Docker のイメージ、コンテナー、データボリューム等、Docker が自動的に作るもろもろのファイルの置き場所は、デフォルトでは、/var/lib/docker になっているらしい。これを他の場所に移す場合、docker のデーモンを停止した上で、/etc/docker/daemon.json というファイルに、

{
 "data-root": "/to/some/path"
}

と書いてデーモンを再開すればよい(daemon.json は、私の環境ではなかったので作った)。
Ubuntu 14.04 では、docker デーモンの停止(再開)は sudo service docker stop(start)

ウェブ上ではいろんな情報が錯綜しているのだが、公式ページにも案内があるし、おそらくこの方法が今のところ一番安全ではないかと考えている。

18
16
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
18
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?