Thursday, 11 July 2019

Docker Command Part-9 By Raj Gupta

Note:- save and export command both give the tar file to share with other , load and import both use to create image from tar file



If you want to share the image then you can also create tar file by the help of save command

[root@ip-172-31-94-183 ~]# docker image ls
REPOSITORY               TAG                 IMAGE ID            CREATED             SIZE
<none>                   <none>              7b68b021455a        5 hours ago         64.2MB
rajimage                 latest              9a7d5e7ed5a5        5 hours ago         183MB
rajguptaaws/raji123456   latest              9a7d5e7ed5a5        5 hours ago         183MB
ubuntu                   14.04               2c5e00d77a67        8 weeks ago         188MB
[root@ip-172-31-94-183 ~]# docker image save rajimage > rajimagenew.tar
[root@ip-172-31-94-183 ~]# ls
raj1.tar  rajimagenew.tar  raj.tar

[root@ip-172-31-94-183 ~]# docker image rm rajimage
Untagged: rajimage:latest
[root@ip-172-31-94-183 ~]# docker image ls
REPOSITORY               TAG                 IMAGE ID            CREATED             SIZE
<none>                   <none>              7b68b021455a        5 hours ago         64.2MB
rajguptaaws/raji123456   latest              9a7d5e7ed5a5        6 hours ago         183MB
ubuntu                   14.04               2c5e00d77a67        8 weeks ago         188MB
[root@ip-172-31-94-183 ~]# docker image load < rajimagenew.tar
Loaded image: rajimage:latest
[root@ip-172-31-94-183 ~]# docker image ls
REPOSITORY               TAG                 IMAGE ID            CREATED             SIZE
<none>                   <none>              7b68b021455a        5 hours ago         64.2MB
rajimage                 latest              9a7d5e7ed5a5        6 hours ago         183MB
rajguptaaws/raji123456   latest              9a7d5e7ed5a5        6 hours ago         183MB
ubuntu                   14.04               2c5e00d77a67        8 weeks ago         188MB



No comments:

Post a Comment