MediaDash/templates/containers/details.html

14 lines
446 B
HTML
Raw Normal View History

2021-08-29 13:03:28 +00:00
{% 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 %}