Denis Medvedev
Denis Medvedev

Reputation: 1

How to change the storage location of docker images on a chromebook?

Can I change the storage location of Docker images from /var/lib/docker to /mnt/chromeos/removable/SD/docker on my chromebook?

Upvotes: 0

Views: 160

Answers (1)

Antonio Petricca
Antonio Petricca

Reputation: 10996

The so called docker data graph can be change by modifying the configuration file /etc/docker/daemon.json like:

{
    "data-root" : "/my/custom/data/graph/path"
}

Upvotes: 0

Related Questions