{% extends "base.html" %}
{% block title %}Container {{container_name}}{% endblock %}
{% block content %}
Container {{container_name}}
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 %}
{% endblock %}