{% extends 'base.html' %} {% block content %} {% if images[0]['tags'][0] == 'Docker unavailable' %}
Docker is unavailable

Docker socket is not responding. Login to the server and check socket status.

{% else %}

Docker images

 ?
Update images
 ?
{% if images %}
{% set images_total_count = images|length %} {% for image in images %} {% for tag in image.tags %} {% set tag_parts = tag.split(':') %} {% if tag_parts|length == 2 %} {% set created_date = image.created.split('.') %} {% set formatted_date = created_date[0].replace('T', ' ') %}

{% if '/apache' in tag_parts[0] %} {% elif '/nginx' in tag_parts[0] %} {% elif '/litespeed' in tag_parts[0] %} {% elif 'openpanel/openpanel' in tag_parts[0] %} {% endif %} {{ tag_parts[0] }} {{ tag_parts[1] }}

Delete image
{% if 'openpanel/apache' == tag_parts[0] %} The official Docker image for Apache enables OpenPanel users to utilize the Apache web server for website management.

Apache natively supports .htaccess files, although restarting Apache is required to activate any modifications made through .htaccess.
{% elif 'openpanel/nginx' == tag_parts[0] %} The official Docker image for Nginx provides OpenPanel users with the capability to manage websites using the Nginx web server.

Unlike Apache, Nginx does not natively support .htaccess files. For configuration changes, directly editing the Nginx configuration files is necessary, and requires reloading Nginx.
{% elif 'openpanel/litespeed' == tag_parts[0] %} The official Docker image for OpenLiteSpeed allows OpenPanel users to leverage the OpenLiteSpeed web server for efficient website management.

OpenLiteSpeed offers native support for .htaccess-like rules through its web administration interface, allowing for the direct application of rewrite rules without the need for file modifications. To apply changes, a graceful restart of OpenLiteSpeed is typically sufficient, avoiding the need for a full server restart.
{% elif 'openpanel/openpanel' == tag_parts[0] %} The official Docker image for OpenPanel.

{% else %} Custom images allow you to tailor the technology stack for your OpenPanel users according to specific requirements.

These images offer the flexibility to include a customized selection of software and configurations, ensuring that users can fine-tune their web server environment to match their unique application needs. Adjustments to the technology stack can be made to optimize performance, enhance security, or add specific functionalities, providing a tailored web hosting experience.
{% endif %}

Checksum: {{ image.id }}

{% endif %} {% endfor %} {% endfor %}
{% else %}

No images

{% endif %}

Docker Resource Usage Settings

?
{% endif %} {% endblock %}