Deleting a container is not a reversible change. Any apps associated
with this container will be removed, and cannot be recovered.
{% extends 'layouts/base.html' %} {% import 'macros/form_macros.html' as f %} {# set deletion_endpoint = 'containers.delete_container_request' #} {% set endpoints = [ ('apps.container_info', 'Container Information'), ] %} {% macro navigation(items) %}
{% endmacro %} {# Show data for container #} {% macro container_info(container) %}Container Name | {{ container.name }} |
Container ID | {{ container.short_id }} |
Container Image | {{ container.image.tags[0] }} |
Container Status | {{ container.status }} |
Container Ports | {% for port in container.ports.values() %} {% if port %} {% for entry in port %} {{entry.get('HostIp')}}:{{entry.get('HostPort')}}, {% endfor %} {% endif %} {% endfor %} |
Container IP | {{ container.attrs.NetworkSettings.get('IPAddress') }} |
Container Path | Host Path |
---|---|
{{ mount.get('Destination') }} | {{ mount.get('Source') }} |