Skip to content

Instantly share code, notes, and snippets.

@ratacibernetica
Created May 2, 2021 04:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ratacibernetica/ea2966c3d11bafab3e4954e87ab43323 to your computer and use it in GitHub Desktop.
Save ratacibernetica/ea2966c3d11bafab3e4954e87ab43323 to your computer and use it in GitHub Desktop.
cambiar ubicacion de imagenes docker linux y raspberry pi
  1. Stop the docker daemon
sudo service docker stop
  1. Add a configuration file to tell the docker daemon what is the location of the data directory

Using your preferred text editor add a file named daemon.json under the directory /etc/docker. The file should have this content:

{ 
   "data-root": "/path/to/your/docker" 
}
  1. Backup
sudo rsync -aP /var/lib/docker/ /path/to/your/docker
  1. Rename
sudo mv /var/lib/docker /var/lib/docker.old

This is just a sanity check to see that everything is ok and docker daemon will effectively use the new location for its data. 5. Restart the docker daemon

sudo service docker start
  1. Test

If everything is ok you should see no differences in using your docker containers. When you are sure that the new directory is being used correctly by docker daemon you can delete the old data directory.

sudo rm -rf /var/lib/docker.old

Taken from https://www.guguweb.com/2019/02/07/how-to-move-docker-data-directory-to-another-location-on-ubuntu/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment