Skip to content

Instantly share code, notes, and snippets.

@nataz77
Created December 7, 2021 10:07
Show Gist options
  • Save nataz77/5b6d4e354f23dfcae39afb5c657e4ce2 to your computer and use it in GitHub Desktop.
Save nataz77/5b6d4e354f23dfcae39afb5c657e4ce2 to your computer and use it in GitHub Desktop.
Import exported .tar container images using Docker
#!/bin/sh
IMG=$(ls)
for i in $IMG
do
docker load < $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment