Docker image load & save
January 18, 2025 ยท View on GitHub
Short guide on how to export and import docker images across different machines.
-
Build for different platforms
docker build -t ugit-optimized-linux --platform linux/amd64 . -
Save the image
docker save <image:tag> > test.tar -
Tranfer the image to another machine.
-
Load the image
docker load < test.tar