DescriptionPretty much every time after the homepage container gets recreated or even just restarted, the disk usage for the disk "Data" displays the information of the disk "/". After another 5-10 manual restarts of the container, finally the data for the correct disk is displayed. It only ever affects the "Data" disk, "/" and "Backup" are always correct. Host fstab: docker-compose.yml: widgets.yaml: homepage versionv0.10.1 Installation methodDocker ConfigurationNo response Container LogsNo response Browser LogsNo response TroubleshootingTried to remove "/" disk, change order of disks, it's always "Data" that displays info of "/". |
Replies: 5 comments 5 replies
|
Sounds like a docker issue not a homepage one, as in for some reason docker issue not picking up that bind mount. I assume when you first run it (and the data drive isn’t working) running |
|
Negative, df is correct: Happy to debug further if you tell me how. |
|
Debug fsSize: |
|
This discussion has been automatically closed because it was marked as answered. See our contributing guidelines for more details. |
|
This discussion has been automatically locked since there has not been any recent activity after it was closed. Please open a new discussion for related concerns. See our contributing guidelines for more details. |
Seems like it's an ordering issue when parsing df output in systeminformation. When I see wrong data,
/app/configappears before/srv/dockerin df. When it's correct,/srv/dockercomes first. I agree, this is an issue in systeminformation, not homepage.As a workaround, I changed docker-compose to list my external disks first, before the config bind mount that seems to trip up systeminformation:
Now, after 10 restarts it was correct every time... Thanks for pointing me in the right direction.