You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now we have an image named data-backup in our repo that is simply a filesystem with the backup files and folders. In order use this image (aka restore from backup), we do the following:
16
+
17
+
Run the data container with the data-backup image
18
+
19
+
run -v /folderToBackup --entrypoint "bin/sh" --name data-container repo/data-backup:${VERSION}
20
+
Run your whatEver image with volumes from the data-conainter
21
+
22
+
docker run --volumes-from=data-container repo/whatEver
0 commit comments