There is a pretty convienient way to save your docker images you build without needing to commit them to a registry:
docker save mynewimage > /tmp/mynewimage.tar
Then, to use it on a new host:
docker load < /tmp/mynewimage.tar
There is a pretty convienient way to save your docker images you build without needing to commit them to a registry:
docker save mynewimage > /tmp/mynewimage.tar
Then, to use it on a new host:
docker load < /tmp/mynewimage.tar