Squid Posted March 13, 2022 Posted March 13, 2022 I'll add in a note, but more leniency is given to apps with issues on RC's than on a stable OS version Quote
sunbear Posted March 14, 2022 Posted March 14, 2022 On 3/13/2022 at 9:16 AM, JonathanM said: Unfortunately the author appears to be mia. @Squid, maybe this plugin should have a note added? Nooooo! I love this app. Guess I might finally have to switch over to portainer. Quote
learnin2walk Posted March 15, 2022 Posted March 15, 2022 You can still expand the group and click on each individual app's menu for logs, etc. 1 Quote
ripeart Posted March 17, 2022 Posted March 17, 2022 On 3/11/2022 at 1:56 PM, kjames2001 said: hi, i just updated to unraid 6.10 rc3, and since then there's no options when i click an icon. Just chiming in to say same issues here! Quote
Squid Posted March 18, 2022 Posted March 18, 2022 Just to reiterate, Yes there are problems with this plugin and 6.10-rc3+ A note has been attached to the app when installing. Because we are still in a Release Candidate stage of the OS, more leniency is given to plugin authors on compatibility issues. My own investigation shows that if you configure the plugin with its default display settings everything seems to work (ie: Preview: None (default) Based upon that, while it does have issues with the RC series it is not eligible for any further moderation steps to be taken at this time. Even once 6.10 stable drops because the plugin still operates as is with its default settings, a stronger note would be added, but I don't see it as being incompatible necessitating a removal - rather its a bug in the plugin which can be worked around. Quote
taafedi1 Posted March 18, 2022 Posted March 18, 2022 (edited) Hello all, since the update from 6.10.0-rc2 to 6.10.0-rc3 the app "Docker Folder" does not work properly for me anymore. In short, I use the Graph mode "Combined" (image 1) and this creates a popup over each container in which actions like Start Edit etc. can be selected (image 2). Since the update, this is no longer available and generally the function of the buttons such as "Protocoll log" (image 3 & 4) is missing when a container is started. What I also noticed is that with the app "Array" on the smartphone the entire Docker area is empty. I assume that there is something wrong with the folders path in the update and therefore the access from the apps now go into the void. Unfortunately, I have not yet been able to deal with the problem in detail. Does anyone know perhaps the problem and a solution or can it generally be the rc3? BR, taafedi1 Imagine 1 imagine 2 (taken by youtube video from ibracorb) imagine 3 imagine 4 Edited March 18, 2022 by taafedi1 Quote
JonathanM Posted March 18, 2022 Posted March 18, 2022 16 minutes ago, taafedi1 said: since the update from 6.10.0-rc2 to 6.10.0-rc3 the app "Docker Folder" does not work properly for me anymore Did you read the last several posts on this page before you posted? Specifically https://forums.unraid.net/topic/89702-plugin-docker-folder/?do=findComment&comment=1106150 1 1 Quote
jhd2962 Posted March 18, 2022 Posted March 18, 2022 (edited) This looks like some sort of race condition in the DOM. Perhaps the order of operations for plugins have changed? Setting a breakpoint on this line: let dropdownElement = $(`#dropdown-${id}`).clone(true) You will find that the dropdownElement length is equal to 0 -- meaning that it can't find that particular element. I verified that the id that is being passed is the container id which is correct. After the page loads, you can open up developer tools and run: var id = "a44765f3cd56"; let dropdownElement = $(`#dropdown-${id}`).clone(true) Where id is equal to the container id you would like to check. You will see that jQuery was able to find the element now, but wasn't quite ready when the code wants to execute. I posted on the project GitHub with what I suspect an issue is. There is a defect reported for this. I'll take a look when I have some time after my work deliverables. Edited March 18, 2022 by jhd2962 4 2 Quote
Linguafoeda Posted March 25, 2022 Posted March 25, 2022 On 8/24/2021 at 1:17 PM, Linguafoeda said: I’ve noticed that docker folders on the dashboard has a GUI issue where the icons start mis-aligned when you load the dashboard page on any zoomed out / smaller resolution screen (for example, below is my iPad). Happens on iPhone safari mobile as well. Is there something internally to fix this? Would love to make it look consistent with desktop since I typically am accessing unraid from my iPad when away from my desk. On 8/24/2021 at 6:20 PM, GuildDarts said: Dang i had fixed that but guess i forgot to include the fix *facepalm currently not able to push a fix as im not at a pc, will be in a few days Just tired this on an ipad and see the same thing. Will fix it when i get to a pc On 11/26/2021 at 10:13 PM, wallas9512 said: My docker overview is a bit upside down, did I missed something. I think the code for list docker in docker interface is reutilized in overview. Do you have any solution for correct this himself? Thanks. are you accessing from an ipad or iOS device? this is exact same issue i have with messed up GUI. would love if the developer @GuildDarts is able to find a solution for this Bump Quote
JonathanM Posted March 25, 2022 Posted March 25, 2022 6 hours ago, Linguafoeda said: would love if the developer @GuildDarts is able to find a solution for this https://forums.unraid.net/topic/89702-plugin-docker-folder/?do=findComment&comment=1106150 Quote
SeanJW Posted March 30, 2022 Posted March 30, 2022 I had to uninstall it sadly, hope it will be fixed soon. Quote
sunbear Posted March 30, 2022 Posted March 30, 2022 On 3/18/2022 at 7:57 AM, Squid said: Just to reiterate, Yes there are problems with this plugin and 6.10-rc3+ A note has been attached to the app when installing. Because we are still in a Release Candidate stage of the OS, more leniency is given to plugin authors on compatibility issues. My own investigation shows that if you configure the plugin with its default display settings everything seems to work (ie: Preview: None (default) Based upon that, while it does have issues with the RC series it is not eligible for any further moderation steps to be taken at this time. Even once 6.10 stable drops because the plugin still operates as is with its default settings, a stronger note would be added, but I don't see it as being incompatible necessitating a removal - rather its a bug in the plugin which can be worked around. I just wanted to add a follow up for this in case anyone is in my same scenario. I was confused when you made this comment specifically when you said "the plugin still operates as is with its default settings" because the only thing that was working for me was the separation into folders. None of the context menu items were working for my on any of the icons. It turns out the actual source of the problem is in the "Preview advanced context menu" option for the docker folders. It turns out this is the feature where the main bug is. After turning this off (I had it on for all folders because it's pretty useful), the typical context menu features started working again. This brings back the major useful functionality of the plugin and I can again navigate my dockers without pulling my hair out. Thanks. 1 7 Quote
ProphetSe7en Posted March 30, 2022 Posted March 30, 2022 41 minutes ago, sunbear said: I just wanted to add a follow up for this in case anyone is in my same scenario. I was confused when you made this comment specifically when you said "the plugin still operates as is with its default settings" because the only thing that was working for me was the separation into folders. None of the context menu items were working for my on any of the icons. It turns out the actual source of the problem is in the "Preview advanced context menu" option for the docker folders. It turns out this is the feature where the main bug is. After turning this off (I had it on for all folders because it's pretty useful), the typical context menu features started working again. This brings back the major useful functionality of the plugin and I can again navigate my dockers without pulling my hair out. Thanks. So you get web-ui, log and Docker submenu to work with this plugin? None of those features works for me Quote
CaptaiNiveau Posted April 20, 2022 Posted April 20, 2022 Any chance this will get fixed in the future? Quote
Squid Posted May 1, 2022 Posted May 1, 2022 Attached is a file which fixes the logs not working on RC4+ (Tested RC5, RC5a) Copy this to /config/plugins/docker.folder (replace the existing .txz there) and reboot I do not use this plugin, so if there's any other issues with RC4+ I will attempt to fix if (and only if) you are extremely specific on how to set things up to get it to fail on RC4 where it worked on 6.9.2 I do see some issues on the dashboard when opening up the folder, and I'm probably not going to touch that as dashboard extensions are a hack upon the system docker.folder-2021.08.20-x86_64-1.txz 1 1 Quote
Astryl Posted May 1, 2022 Posted May 1, 2022 Anyone know how to get the folders to display the correct ram allocations and usage %s? Folders themselves don't aggregate the totals. Quote
crafty35a Posted May 16, 2022 Posted May 16, 2022 (edited) On 5/1/2022 at 12:44 PM, Astryl said: Anyone know how to get the folders to display the correct ram allocations and usage %s? Folders themselves don't aggregate the totals. Mine all look correct. But I notice that your containers are showing different numbers for total RAM available. The 1.78Gib total you are seeing is the sum of the two containers that show 8GiB total RAM. Are you somehow limiting the RAM available to some containers? if so, that's probably what's causing the numbers to not be included in the total. Edited May 16, 2022 by crafty35a 1 Quote
Astryl Posted May 18, 2022 Posted May 18, 2022 (edited) On 5/16/2022 at 9:17 AM, crafty35a said: Mine all look correct. But I notice that your containers are showing different numbers for total RAM available. The 1.78Gib total you are seeing is the sum of the two containers that show 8GiB total RAM. Are you somehow limiting the RAM available to some containers? if so, that's probably what's causing the numbers to not be included in the total. Almost all of my containers run with CPU and Memory limits. The 1.78gb / 8gb is what's available for the first container in that folder. The other containers in the same folder are not adding to the aggregate total. Attached is a screen on one of my folders. It shows a max of 512MB allocated; but I purposefully did not cap one of the containers in this folder to show that it is not displaying this properly. Edited May 18, 2022 by Astryl Quote
Masterwishx Posted May 19, 2022 Posted May 19, 2022 will be cool if some one can fix this plugin blank page on unraid 6.10.0 , its very useful for docker page. Quote
SirCadian Posted May 20, 2022 Posted May 20, 2022 12 hours ago, God_TM said: I'm hoping someone forks the project. Same. I've uninstalled for now but will keep an eye out for possible replacements. Quote
Squid Posted May 20, 2022 Posted May 20, 2022 On 5/1/2022 at 10:17 AM, Squid said: Attached is a file which fixes the logs not working on RC4+ (Tested RC5, RC5a) Copy this to /config/plugins/docker.folder (replace the existing .txz there) and reboot I do not use this plugin, so if there's any other issues with RC4+ I will attempt to fix if (and only if) you are extremely specific on how to set things up to get it to fail on RC4 where it worked on 6.9.2 I do see some issues on the dashboard when opening up the folder, and I'm probably not going to touch that as dashboard extensions are a hack upon the system docker.folder-2021.08.20-x86_64-1.txz 133.42 kB · 24 downloads 3 Quote
thecode Posted May 20, 2022 Posted May 20, 2022 8 hours ago, Squid said: I think no one actually explained how to reproduce the context menu bug: 1. Create a folder and add containers to it 2. Enable preview advanced context menu: 3. Click on a container a menu will open without the dropdown options: Workaround which works for me that might hint where is the problem: 4. Expand the folder and start/stop any container on that folder and the dropdown menu is fixed until the page is refreshed: Hope that helps, I spent few hours debugging this with no luck (I am more of a backend developer, not frontend), I think the starting point should be https://github.com/GuildDarts/unraid-plugin-docker.folder/issues/11#issuecomment-1072792061 1 1 Quote
Masterwishx Posted May 21, 2022 Posted May 21, 2022 On 5/20/2022 at 12:05 AM, Marlat said: It seems the project is dead. So sad... But we still have a strong plugin makers with hi skills , maybe someone can continue the project?!? Quote
Recommended Posts
Posted by scolcipitato,
Docker Folder is going away, this is the replacement
Recommended by JonathanM
4 reactions
Go to this post
Posted by Squid,
9 reactions
Go to this post
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.