mirror of https://github.com/portainer/portainer
fix(app/image-details): export images to tar (#40)
parent
94b1d446c0
commit
9ea62bda28
|
@ -166,7 +166,7 @@ angular.module('portainer.docker').controller('ImageController', [
|
||||||
$scope.state.exportInProgress = true;
|
$scope.state.exportInProgress = true;
|
||||||
ImageService.downloadImages([{ tags: image.RepoTags, id: image.Id }])
|
ImageService.downloadImages([{ tags: image.RepoTags, id: image.Id }])
|
||||||
.then(function success(data) {
|
.then(function success(data) {
|
||||||
var downloadData = new Blob([data.file], { type: 'application/x-tar' });
|
var downloadData = new Blob([data], { type: 'application/x-tar' });
|
||||||
FileSaver.saveAs(downloadData, 'images.tar');
|
FileSaver.saveAs(downloadData, 'images.tar');
|
||||||
Notifications.success('Success', 'Image successfully downloaded');
|
Notifications.success('Success', 'Image successfully downloaded');
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue