Reputation: 1
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
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