Skip to content

Instantly share code, notes, and snippets.

@tillepille
Created November 11, 2020 21:26
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 tillepille/1f6c047cf714a31892ac21684712342d to your computer and use it in GitHub Desktop.
Save tillepille/1f6c047cf714a31892ac21684712342d to your computer and use it in GitHub Desktop.
Transfer Docker Volumes.md

Copy docker volumes from one host to another

ssh server1 'docker run --rm -v <volume>:/from alpine ash -c "cd /from ; tar -cf - . "' | ssh server2 'docker run --rm -i -v <volume>´:/to alpine ash -c "cd /to ; tar -xpvf - " '

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