{% extends 'repository/repo_layout.html' %} {% from "_custom_select.html" import custom_select %} {% block title %}Shells - {{ repo_owner }}/{{ repo_name }}{% endblock %} {% block extra_css %} {% endblock %} {% block repo_content %}

Shells

{{ containers|length }} / {{ shell_limit_max|default(1) }}
{% for shell in containers %}
{% if 'running' in shell.status %} {% endif %}

{{ shell.name|truncate(20) }}

{{ shell.short_id }} {{ shell.distro }} {{ shell.engine|default('podman') }}
CPU LOAD {{ shell.stats.cpu_percent }}%
Memory {{ (shell.stats.mem_usage_mb)|round(0) }}MB
Storage {{ (shell.stats.storage_usage_mb)|round(0) }}MB
DOWN {{ shell.stats.net_rx_mb }} MB
UP {{ shell.stats.net_tx_mb }} MB
Lifespan {% if shell.lifespan_pending|default(false) %} {% else %} {{ shell.time_left_mins }}m {% endif %}
{% if shell.lifespan_pending|default(false) %}
{% else %}
{% endif %}
{% if shell.setup_failed %}
{% elif shell.is_ready %} {% else %}
{% endif %}
{% else %}

No Shells Found

Create a disposable environment to start testing repository in a secure, isolated container.

{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}