Display PortBindings in the /container view

pull/2/head
Arnaud Lafon 2014-07-18 12:48:08 +02:00
parent 5075995129
commit 1bbfdff369
1 changed files with 5 additions and 1 deletions

View File

@ -37,7 +37,11 @@
<tr>
<td>Ports:</td>
<td>
{{ container.NetworkSettings.PortMapping || container.Config.PortSpecs }}
<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>
</li>
</ul>
</td>
</tr>