Tools, FAQ, Tutorials:
Export and Import Docker Image Files
How to Export and Import Docker Image Files?
✍: FYIcenter.com
If you want to move a docker image from another system to run,
you can follow this tutorial.
1. Export the Docker image a file on the old system.
fyicenter# docker images REPOSITORY TAG IMAGE ID CREATED SIZE fyi/cuda 1 1a4cb45485ee 10 minutes ago 3.91GB nvidia/cuda 11.0-base 2ec708416bb8 12 months ago 122MB fyicenter# docker image save fyi/cuda:1 > fyi_cuda_1.tar fyicenter# ls -l *.tar -rwxrwxr-x. 1 3938845696 fyi_cuda_1.tar
2. Import the Docker image file on the new system.
fyicenter# docker image import my_cuda_1.tar my/cuda:2 sha256:... fyicenter# docker image ls REPOSITORY TAG IMAGE ID CREATED SIZE fyi/cuda 2 576a3659a351 19 minutes ago 3.94GB
⇒ Managing Data Storage in Docker
⇐ Commit New Image with Updated Docker
2023-02-19, ∼1194🔥, 0💬
Popular Posts:
How to create a "Sign-up or Sign-in" user flow policy in my Azure AD B2C directory? If you want to b...
How to search for the first match of a regular expression using re.search()? The re.search() functio...
How to Instantiate Chaincode on BYFN Channel? You can follow this tutorial to Instantiate Chaincode ...
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...