2021-07-14 09:15:21 +00:00
< div class = "form-group" ng-if = "$ctrl.pullRateLimits" >
2021-03-24 18:27:32 +00:00
< div class = "col-sm-12 small" >
2022-07-11 02:05:23 +00:00
< div ng-if = "$ctrl.pullRateLimits.remaining > 0" class = "text-muted vertical-center" >
2022-11-28 02:00:28 +00:00
< pr-icon icon = "'alert-circle'" mode = "'primary'" > < / pr-icon >
2021-03-24 18:27:32 +00:00
< span ng-if = "$ctrl.isAuthenticated" >
You are currently using a free account to pull images from DockerHub and will be limited to 200 pulls every 6 hours. Remaining pulls:
2022-01-17 05:53:32 +00:00
< span style = "font-weight: bold" > {{ $ctrl.pullRateLimits.remaining }}/{{ $ctrl.pullRateLimits.limit }}< / span >
2021-03-24 18:27:32 +00:00
< / span >
< span ng-if = "!$ctrl.isAuthenticated" >
< span ng-if = "$ctrl.isAdmin" >
You are currently using an anonymous account to pull images from DockerHub and will be limited to 100 pulls every 6 hours. You can configure DockerHub authentication in
the
< a ui-sref = "portainer.registries" > Registries View< / a > . Remaining pulls:
2022-01-17 05:53:32 +00:00
< span style = "font-weight: bold" > {{ $ctrl.pullRateLimits.remaining }}/{{ $ctrl.pullRateLimits.limit }}< / span >
2021-03-24 18:27:32 +00:00
< / span >
< span ng-if = "!$ctrl.isAdmin" >
You are currently using an anonymous account to pull images from DockerHub and will be limited to 100 pulls every 6 hours. Contact your administrator to configure
2022-01-17 05:53:32 +00:00
DockerHub authentication. Remaining pulls: < span style = "font-weight: bold" > {{ $ctrl.pullRateLimits.remaining }}/{{ $ctrl.pullRateLimits.limit }}< / span >
2021-03-24 18:27:32 +00:00
< / span >
< / span >
< / div >
2022-07-11 02:05:23 +00:00
< div ng-if = "$ctrl.pullRateLimits.remaining <= 0" class = "text-warning vertical-center" >
2022-11-28 02:00:28 +00:00
< pr-icon icon = "'alert-triangle'" mode = "'warning'" > < / pr-icon >
2021-03-24 18:27:32 +00:00
< span ng-if = "$ctrl.isAuthenticated" >
Your authorized pull count quota as a free user is now exceeded.
< span ng-transclude = "rateLimitExceeded" > You will not be able to pull any image from the DockerHub registry.< / span >
< / span >
< span ng-if = "!$ctrl.isAuthenticated" >
Your authorized pull count quota as an anonymous user is now exceeded.
< span ng-transclude = "rateLimitExceeded" > You will not be able to pull any image from the DockerHub registry.< / span >
< / span >
< / div >
< / div >
< / div >