This message was deleted.
# rancher-desktop
a
This message was deleted.
h
Have you tried
docker save
docker load
?
o
Can we do all images at a time
h
It can do multiple. Here's the doc. You could easily script it
o
When I do docker save and load then in rancher desktop the images are showing as none as name
h
This worked for me
Copy code
> docker images | sls jim 
perses                                              jim                    edc1d7a72107   7 weeks ago     395MB
> docker save perses:jim -o ~/temp/perses.tar
> docker rmi perses:jim
> docker load -i ~/temp/perses.tar
> docker images | sls jim 
perses                                              jim                    edc1d7a72107   7 weeks ago     395MB
o
What is sls command?
Getting SLS not recognised
h
That's PowerShell. Replace sls with grep on other OSes
o
Grep also not working as mine is windows os
Not sure when I am running docker commands in powershell this one is opening
h
If you don't know what shell you're in, just remove
| sls
and scan it by eye.
o
Yes I am getting images
When we load do we get with image names?
h
It shows me the name when I do one.
Copy code
> docker load -i ~/temp/perses.tar
Loaded image: perses:jim
o
Oh okay let me try
There isn't command for more images i mean for 10 images like that