Saving docker images to a file
It is quite common to get docker images from the registry. However, what if you need to persist your docker images and load them later from disk?
Here are two commands that can help you with it:
docker save -o back.tar.gz myApp:v12 myApp:latest dbAp...
aliasger.dev1 min read