How to take container snapshots in docker
The command docker commit takes a snapshot of your container. That snapshot is an image, which you can put on a (private) repository to be able to pull it on another host. An option that does not use an image (which you say you want to avoid) is indeed save and load. According to the … Read more