crafty35a

Members
  • Posts

    22
  • Joined

  • Last visited

Everything posted by crafty35a

  1. Read the thread, there are issues right now with this plugin on 6.12
  2. Thank you, but I don't see that warning message anywhere (and also I have 6 CPU cores)
  3. I feel like I must be missing something obvious, but I can't seem to select my SSD cache drives for testing. They are listed, but grayed out/unselectable. I did add the path value specified in the FAQ.
  4. This is suddenly happening to me as well. If I toggle the tunnel a few times, it will eventually handshake. But even then, the tunnel does not show up as a network for docker containers (I have "VPN tunneled access for docker" selected), so it doesn't appear to actually be working. Edit- I imported a second tunnel, and suddenly both appear as available networks for containers. But they still don't seem to work at all, I can't get any traffic over the tunnels. Edit2- I was able to fix this after downgrading from 6.12 RC2 to stable. Oddly, it took multiple reboots to start working. I was assuming this was the same exact issue as OP, but maybe not since I was on 6.12.
  5. I can confirm, there are a couple issues regarding sort order on 6.12 RC2 with Docker Folders. Containers inside a folder cannot be re-ordered. The orange up/down icon appears next to the container, but the containers are not draggable. Containers outside of a folder can still be dragged. Re-ordering folders themselves does appear to work, but the order does not stick. After a reload, the previous order returns.
  6. The instructions I had followed were to map the /netdata/dbengine subfolder, not the entire netdata folder -- I will try it the way you show here and let you know if I lose history again tonight. Is this the only change you made from the template defaults? Also, did you make the "delete obsolete charts files" change or was that not necessary? Edit - I'm not quite sure how to set this up, the container won't start with this setting ('netdata ERROR : MAIN : Failed to initialize database at /var/cache/netdata/netdata-meta.db, due to "unable to open database file'). Guessing I need to copy the db over manually before starting, but I'm not clear on how to do so
  7. I tried that back in April when I first started using Netdata and ran into this issue, and it definitely had no effect. I just changed that setting again and switched back from the stable tag to netdata/netdata to force an update, and lost my history. I can check to see if history is cleared again for the next pushed update as well, but I'm pretty sure it will be.
  8. I'm aware of that, but it sounded to me like that was referring the visual aberrations (e.g. the misaligned separator). Either way, I hadn't seen anyone else report this so it seems worth mentioning.
  9. Minor issue - on the dashboard, the "All apps/Started only" toggle seems to be reversed for containers within a folder. It works properly for containers that are not in a folder, and for folders themselves.
  10. Understandable - thanks for taking the time to get this plugin up to speed, it really is crucial to a lot of us.
  11. Since updating to the fork, folders do not show up on my dashboard anymore - just the standard big list of containers. Anyone else? I initially updated directly. But then I removed the plugin, rebooted, reinstalled the plugin and created a new folder - same result, folders do not show up on the dashboard.
  12. This is awesome! The only thing is we now lost the ability to copy the current path to clipboard (very useful when simultaneously using a terminal). Would you consider using a bold / character, instead of the stylized chevron that you now use?
  13. 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.
  14. Just a quick suggestion - it would be really cool if you could make the full path at the top function as a clickable breadcrumb style navigation (like Windows Explorer, Krusader, etc). Clicking "Parent Directory" repeatedly gets pretty tedious!
  15. How do I get glances to show the full command, like htop? e.g. by default it is just showing "python3" instead of "python3 -m glances /glances/conf/glances.conf -w" It looks like glances by default should be showing the full command line, but it doesn't when I use this container.
  16. What is the proper way to make my chart data persistent? I already bound the dbengine folder into my appdata. Data persists through a restart of the container, but not an update (and updates are very frequent!). Also, just a heads up- there is a typo in the OP instructions on mounting netdata.conf (it's misspelled as netAdata.conf on both sides)
  17. If I have a stack using depends_on to control container start order, how does that interact with the the ordering on UnRAID's Docker page which typically controls startup order?
  18. Similarly, I just tried editing the WebUI for my second linuxserver/sonarr instance, and no matter what I set it to, it is sending me to the WebUI setting that was first defined when I set up the container.
  19. I am using Hotio's container, but it's not anything like that. I manually specified the entire URL and port, no variables - but the second container still links to the first container's specified URL. As a test, I just changed the second one's WebUI setting to http://www.google.com - but the UnRAID UI still links to the custom URL I have set for container 1.
  20. Issue 1: Editing the WebUI setting for an existing container (via the advanced view) has no effect. The entry does "stick" and will display properly in the Update Container page, but the WebUI link for the container will continue to route to the previous setting. This can be worked around by setting the WebUI during the initial container creation, rather than editing it after the fact. Note that this issue and workaround were reported as far back as 2015 (!): https://forums.unraid.net/topic/37275-changing-docker-webui-url/?do=findComment&comment=406173 Issue 2: When adding a second instance of a container that I already have running (qBittorrent in this case), the WebUI link of the second container always points to that of the first container, regardless of what is set in the advanced view's WebUI setting. Here is a brief reddit thread from 2020 reporting the same issue: https://www.reddit.com/r/unRAID/comments/jdywuz/opening_docker_webui_results_in_wrong_address/ Note that I am currently on 6.10.0 RC4, but I posted this in the Stable section since the bugs exist on stable as well. tower-diagnostics-20220407-1007.zip
  21. Great work on this! I'm completely new to Docker, but did eventually get this working on Windows in Hyper-V mode (Mullvad/Wireguard). My question - is it possible to get this working with Docker set to WSL 2 mode? So far I haven't been able to get it working. The main error seems to be: 2021-02-04 15:44:05,318 DEBG 'start-script' stderr output: iptables-restore v1.8.7 (legacy): unknown option "--save-mark" Error occurred at line: 5 Try `iptables-restore -h' or 'iptables-restore --help' for more information. Which I believe means the WSL2 kernel does not include the CONNMARK module. But I swapped out the WSL2 kernel for one built with wireguard/connmark support, and I'm still getting errors. --EDIT-- Got it! I had to manually compile the WSL2 kernel with CONFIG_NETFILTER_XT_MATCH_CONNMARK=y Everything works great when using that modified kernel. Instructions here (not mine) in case anyone else runs into this in the future.