mirror of
https://github.com/portainer/portainer.git
synced 2025-08-04 21:35: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:
parent
2445a5aed5
commit
f67e866e7e
6 changed files with 268 additions and 1 deletions
|
@ -34,8 +34,20 @@ angular.module('portainer.extensions.registrymanagement', [])
|
|||
}
|
||||
}
|
||||
};
|
||||
var registryRepositoryTag = {
|
||||
name: 'portainer.registries.registry.repository.tag',
|
||||
url: '/:tag',
|
||||
views: {
|
||||
'content@': {
|
||||
templateUrl: './views/repositories/tag/registryRepositoryTag.html',
|
||||
controller: 'RegistryRepositoryTagController',
|
||||
controllerAs: 'ctrl'
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
$stateRegistryProvider.register(registryConfiguration);
|
||||
$stateRegistryProvider.register(registryRepositories);
|
||||
$stateRegistryProvider.register(registryRepositoryTags);
|
||||
$stateRegistryProvider.register(registryRepositoryTag);
|
||||
}]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue