diff --git a/app/static/js/index.js b/app/static/js/index.js
index 3659925..94cb319 100644
--- a/app/static/js/index.js
+++ b/app/static/js/index.js
@@ -982,7 +982,14 @@ ${svc.status === 'running' && svc.host_port ? `Порт: ${svc.host_port}` : ''}
`;
- els.containerList.appendChild(hostSection);
+
+ // Добавляем секцию хоста внутрь секции удаленных контейнеров
+ const remoteContent = document.getElementById('remote-content');
+ if (remoteContent) {
+ remoteContent.appendChild(hostSection);
+ } else {
+ els.containerList.appendChild(hostSection);
+ }
containers.forEach(svc => {
const item = document.createElement('div');