root@dokku:~$

Admin Control Center

{% for r in data.apps %}

{{ r.app }}

[^ BACK_TO_TOP]
Container Metadata
ID {{ r.detail.id or '—' }}
Name {{ r.container }}
Image {{ r.detail.image or '—' }}
Status {{ (r.detail.state.status or 'unknown') | upper }}
Networking & Ports
IP Address {{ r.detail.ip_address or '—' }}
Networks {{ (r.detail.networks or []) | join(', ') }}
Port Mappings {% for port, mappings in (r.detail.ports or {}).items() %} {{ port }}{% if mappings %} → {{ mappings[0].HostPort }}{% endif %}
{% endfor %}
Environment Variables
{% for env in (r.detail.env or []) %} {% set parts = env.split('=', 1) %}
{{ parts[0] }}={{ parts[1] }}
{% endfor %}
[ STDOUT / STDERR ]
{% if r.logs %} {% for log in r.logs %}
{{ log.text }}
{% endfor %} {% else %}
[ NO LOG DATA IN BUFFER ]
{% endif %}
{% endfor %}

SQL Query Interface

[^ BACK_TO_TOP]
Query Console

Server Shell Access

[^ BACK_TO_TOP]
ROOT@DOKKU:~$
Dokku Terminal initialized. Ready for commands.
$