Initial commit
This commit is contained in:
commit
7523a19d1f
40 changed files with 3984 additions and 0 deletions
14
templates/containers/details.html
Normal file
14
templates/containers/details.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block app_content %}
|
||||
<h1>
|
||||
<a href="{{config.APP_CONFIG.portainer_url}}#/containers/{{container.Id}}">
|
||||
{{container.Config.Labels["com.docker.compose.project"]}}/{{container.Config.Labels["com.docker.compose.service"]}}
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<h4>Env</h4>
|
||||
<pre>{{container.Config.Env|join("\n")}}</pre>
|
||||
|
||||
<pre>{{container|tojson(indent=4)}}</pre>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue