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

Consume image IDs that contain slashes, fix container port labels, be nicer about old browsers.

This commit is contained in:
Kevan Ahlquist 2015-02-13 01:13:04 -06:00
parent 0d4274fdeb
commit 65d0b0110d
6 changed files with 18 additions and 18 deletions

View file

@ -60,7 +60,7 @@
<td>
<ul style="display:inline-table">
<li ng-repeat="(containerport, hostports) in container.HostConfig.PortBindings">
{{ containerport }} => <span class="label" ng-repeat="(k,v) in hostports">{{ v.HostIp }}:{{ v.HostPort }}</span>
{{ containerport }} => <span class="label label-default" ng-repeat="(k,v) in hostports">{{ v.HostIp }}:{{ v.HostPort }}</span>
</li>
</ul>
</td>