2

I have a minio server running. I accidentally deleted my images on minio server. But I have the backup of images in my local in a zip file. How do I restore it? I am using docker. should I mount or something?

1 Answers1

1

If you have a zip file of the docker images, send the zip to your server, unzip it and load the image using this command:

docker load -i backupimage.img
StephaneM
  • 4,779
  • 1
  • 16
  • 33