1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-01 20:05:23 +02:00

feat(registry): inspect repository images (#3121)

* feat(registry): inspect repository images

* fix(registry): tag inspect column sorting
This commit is contained in:
xAt0mZ 2019-10-14 15:46:33 +02:00 committed by GitHub
parent 2445a5aed5
commit f67e866e7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 268 additions and 1 deletions

View file

@ -0,0 +1,8 @@
import _ from 'lodash-es';
export function RegistryImageLayerViewModel(order, data) {
this.Order = order;
this.Id = data.id;
this.Created = data.created;
this.CreatedBy = _.join(data.container_config.Cmd, ' ');
}