The right way to move a docker-data container from only one computer to another

I have a database docker container that writes its data to another data-only container. A data-only container has where it stores database data. Is there a way to "docker" the transfer of this container for data only from one machine to another? I read about loading dockers and loading dockers, but these commands save and load images, not containers. I want to be able to pack a docker container along with its volumes and move it to another machine.

+5
source share
1 answer

Design a flocker project. A very interesting solution to this problem is using ZFS to snapshot and replicate storage between hosts.

+5
source

Source: https://habr.com/ru/post/1202096/


All Articles