mirror of https://github.com/portainer/portainer
feat(container-details): add entrypoint to container details view (#3120)
* feat(container-details): add entrypoint to container details view * feat(container-details): restore file from develop branch to bring back original indentation * feat(container-details): add entrypoint to container details viewpull/3255/head
parent
19810b9f4e
commit
8de507a15d
|
@ -201,6 +201,10 @@
|
|||
<td>CMD</td>
|
||||
<td><code>{{ container.Config.Cmd|command }}</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ENTRYPOINT</td>
|
||||
<td><code>{{ container.Config.Entrypoint ? (container.Config.Entrypoint|command) : "null" }}</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ENV</td>
|
||||
<td>
|
||||
|
|
Loading…
Reference in New Issue