{% extends "base.html" %} {% block title %}Container {{container_name}}{% endblock %} {% block content %}

Container {{container_name}} {% match info.stack() %}{% when Some with (stack) %}({{stack}}) {% when None %}{% endmatch %}

Status

ID
{{ info.id }}
Status
{{ info.state }}
Image
{{ info.image }}
Image ID
{{ info.image_id }}
Created at
{{ info.created_at }}
{% match info.volumes %} {% when Some with (volumes) %}
Volumes
{% for volume in volumes %}
{{ volume.source.clone().unwrap_or_default() }} → {{ volume.destination.clone().unwrap_or_default() }}
{% endfor %} {% when None %} {% endmatch %} {% match info.env %} {% when Some with (env) %}
Environment
{% for var in env %}
{{ var }}
{% endfor %} {% when None %} {% endmatch %} {% match info.labels %} {% when Some with (labels) %}
Labels
{% for label in labels %}
{{ label.0 }} = {{ label.1 }}
{% endfor %} {% when None %} {% endmatch %}

Logs

{% endblock %}