Nachdem es dann und wann doch einmal nötig
ist die Docker Images zu sichern – z.B. um sie auf
einen anderen Rechner zu bringen, hier die Lösung:
Saving docker images locally
You save the image as a tar archive, using docker save -o
:
docker save -o archive.tar sheffien/rim
Then you load it (on a different computer) with
docker load -i archive.tar
and now it will show up in your docker images list:
docker images