mirror of
https://github.com/portainer/portainer.git
synced 2025-08-04 05:15:25 +02:00
feat(containers): change exposed port format (#243)
This commit is contained in:
parent
be184c11a6
commit
29a59cab44
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@
|
||||||
<td ng-if="swarm && !swarm_mode">{{ container.hostIP }}</td>
|
<td ng-if="swarm && !swarm_mode">{{ container.hostIP }}</td>
|
||||||
<td>
|
<td>
|
||||||
<a ng-if="container.Ports.length > 0" ng-repeat="p in container.Ports" class="image-tag" ng-href="http://{{p.host}}:{{p.public}}" target="_blank">
|
<a ng-if="container.Ports.length > 0" ng-repeat="p in container.Ports" class="image-tag" ng-href="http://{{p.host}}:{{p.public}}" target="_blank">
|
||||||
<i class="fa fa-external-link" aria-hidden="true"></i> {{ p.private }}
|
<i class="fa fa-external-link" aria-hidden="true"></i> {{p.public}}:{{ p.private }}
|
||||||
</a>
|
</a>
|
||||||
<span ng-if="container.Ports.length == 0" >-</span>
|
<span ng-if="container.Ports.length == 0" >-</span>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue