Skip to content

Fix docker compose containers not being grouped into folders#22

Open
adamaru wants to merge 1 commit intoVladoPortos:mainfrom
adamaru:main
Open

Fix docker compose containers not being grouped into folders#22
adamaru wants to merge 1 commit intoVladoPortos:mainfrom
adamaru:main

Conversation

@adamaru
Copy link
Copy Markdown

@adamaru adamaru commented Jun 29, 2025

This fixes docker compose containers not being grouped correctly into folders.
The issue was mentioned multiple times in the support thread.

Cause:
Containers created with docker compose do not have a link in their title on the list as the standard ones do.
Searching by their name queried td.ct-name .appname a which didn't give any results.

Docker compose container HTML:

<span class="inner">
    <span class="appname ">example-container-name</span><br>
    <i id="load-ffffffffffff" class="fa fa-play started green-text"></i>
    <span class="state">started<br>Compose Stack: example-stack-name</span>
</span>

Standard Unraid docker container HTML:

<span class="inner">
    <span class="appname ">
        <a class="exec" onclick="editContainer('example-container-name','/boot/config/plugins/dockerMan/templates-user/my-example-container-name.xml')">example-container-name</a>
    </span><br>
    <i id="load-ffffffffffff" class="fa fa-play started green-text"></i>
    <span class="state">started</span>
</span>

Changing the query to td.ct-name .appname fixes docker compose issues and does not interfere with standard containers.

chodeus added a commit to chodeus/folder.view3 that referenced this pull request Feb 3, 2026
Bug Fixes:
- Fix Docker Compose containers not grouping into folders (PR VladoPortos#22)
- Fix order loop double-subtraction in vm.js and dashboard.js
- Fix null coalescing for Docker labels in lib.php
- Fix globalFolders null access in dashboard.js

UI/UX Improvements:
- Make tooltip responsive for ultrawide monitors (Issue #10)
- Add CSS variables for theme compatibility
- Fix tooltipster overflow issue
- Make dialog width responsive

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
chodeus added a commit to chodeus/folder.view3 that referenced this pull request Feb 3, 2026
Safe fixes that don't affect folder ordering logic:
- Docker Compose containers not grouping into folders (Issue VladoPortos#22)
- PHP null coalescing for tailscale.funnel label
- Tooltip responsive for ultrawide monitors (Issue #10)
- Tooltipster overflow fix
- Dialog width responsive on smaller screens

Note: SSE data filter fix (forum post) is already present in codebase.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant