I have two questions:
I have Docker running on a VPS with 160GB Disk space. I downloaded a snapshot .tar file on that VPS and the next step would be to unpack it. However, because the unpacked file is 88GB, I added an additional volume with 100GB to my droplet.
My plan is, to move that .tar file to the 100GB volume. And then unpack it back into the main 160 volume.
This would be the code to unpack the file: cd /tmp
an then: sudo tar xvC /var/lib/docker/volumes/NAME_OF_YOUR_VOLUME/_data/data/tomo/ -f 20190617.tar
But I am a newbie and I don't understand that command and don't know how it works, when you have two volumes.
This is how I solved it.