MediaDash/templates/containers/details.html

14 lines
446 B
HTML

{% 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 %}