Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 410 Bytes

demo-13.md

File metadata and controls

18 lines (13 loc) · 410 Bytes

Container Image backup as TAR balls

  1. Backup one or more images in TAR file

    ### $ docker save -o <TarFile.tar> IMAGE1 IMAGE2 IMAGE3
    $ docker save -o test1.tar test1:latest
  2. You can view the contents of Generated TAR using 7zip.

  3. Load the backed images

    ## $ docker load -i <TarFile.tar>
    $ docker rmi test1:latest
    $ docker load -i test1.tar