[ CONTAINER: {{ container_name }} ]

← BACK TO LOGS
{% if container.error %}
[ERROR]
{{ container.error }}
{% else %}
[BASIC INFO]
Container ID
{{ container.id }}
Image
{{ container.image }}
Status
{{ container.state.status | upper }}
Started At
{{ container.state.started_at }}
Working Directory
{{ container.working_dir or "—" }}
IP Address
{{ container.ip_address or "—" }}
Networks
{{ container.networks | join(", ") or "—" }}
[ENVIRONMENT VARIABLES]
{% if container.env %}
{% for env in container.env %}
{% set parts = env.split('=', 1) %}
{{ parts[0] }}
{{ parts[1] if parts|length > 1 else "" }}
{% endfor %}
{% else %}
No environment variables
{% endif %}
[PORT MAPPINGS]
{% if container.ports %}
{% for port, mappings in container.ports.items() %}
{{ port }} {% if mappings %} → {% for mapping in mappings %} {{ mapping.HostIp or "0.0.0.0" }}:{{ mapping.HostPort }} {% endfor %} {% else %} (not mapped) {% endif %}
{% endfor %}
{% else %}
No port mappings
{% endif %}
[VOLUMES & MOUNTS]
{% if container.mounts %}
{% for mount in container.mounts %}
[{{ mount.type | upper }}] {% if mount.rw %}[RW]{% else %}[RO]{% endif %}
{{ mount.source }} → {{ mount.destination }}
{% endfor %}
{% else %}
No mounts
{% endif %}
[COMMAND & ENTRYPOINT]
Entrypoint
{{ container.entrypoint | join(" ") or "—" }}
Command
{{ container.cmd | join(" ") or "—" }}
[RESTART POLICY]
Name
{{ container.restart_policy.Name or "no" }}
Max Retry Count
{{ container.restart_policy.MaximumRetryCount or "0" }}
{% endif %}