1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 13:55:21 +02:00

Display container name on dashboard

This commit is contained in:
Michael Crosby 2013-12-30 10:39:55 -08:00
parent 0a6d413ebd
commit efd58156f7

View file

@ -16,7 +16,7 @@
<h3>Running Containers</h3> <h3>Running Containers</h3>
<ul> <ul>
<li ng-repeat="container in containers|orderBy:predicate"> <li ng-repeat="container in containers|orderBy:predicate">
<a href="/#/containers/{{ container.Id }}/">{{ container.Image }}</a> <a href="/#/containers/{{ container.Id }}/">{{ container|containername }}</a>
<span class="label label-{{ container.Status|statusbadge }}">{{ container.Status }}</span> <span class="label label-{{ container.Status|statusbadge }}">{{ container.Status }}</span>
</li> </li>
</ul> </ul>