Disks potentially recognized, but disk sizes not showing up in resources section #3445
Replies: 2 comments 3 replies
-
Thanks for posting a discussion about homepage here on GitHub. Homepage now uses a fancy new AI tool thanks to our friends at Glime, so the answer below is the AI bot's attempt to answer your question. If you feel it's sufficient you can mark the answer and close this post, otherwise feel free to leave it open of course! Thanks for using Homepage! ❤️ Based on the information provided, it seems that you are trying to monitor disk resources within the Homepage application running in a Docker container. The issue you are facing where the disks are not being recognized is likely due to incorrect volume mounts in your In your volumes:
- /srv/dev-disk-by-uuid-df7d8fb0-65d3-4332-8d28-a546004b7f60/appdata/homepage:/app/config
- /:/boot
- /srv/dev-disk-by-uuid-df7d8fb0-65d3-4332-8d28-a546004b7f60:/docker
- /srv/dev-disk-by-uuid-1df8843c-a5e7-47d0-b8cb-a14f14fd3111:/data The issue here is that you are trying to mount the root directory ( Here's how you can correct the volume mounts:
For example, if volumes:
- /boot:/mnt/boot
- /srv/dev-disk-by-uuid-df7d8fb0-65d3-4332-8d28-a546004b7f60:/mnt/docker
- /srv/dev-disk-by-uuid-1df8843c-a5e7-47d0-b8cb-a14f14fd3111:/mnt/data Then, in your - resources:
label: BOOT
expanded: true
disk:
- /mnt/boot
- resources:
label: DOCKER
expanded: true
disk:
- /mnt/docker
- resources:
label: DATA
expanded: true
disk:
- /mnt/data Make sure that the paths you use in the Remember that any disk you wish to access must be mounted to your container as a volume, as mentioned in the documentation. If the disks are not properly mounted, the Homepage application will not be able to access them, resulting in the issues you are experiencing. Please adjust your volume mounts accordingly and ensure that the paths used in the This comment was generated by Glime. |
Beta Was this translation helpful? Give feedback.
-
This discussion has been automatically closed due to inactivity. See our contributing guidelines for more details. |
Beta Was this translation helpful? Give feedback.
-
Description
I'm trying to connect 3 known disk sizes to the resources section of widgets.yaml. I'm using OMV, but below shows the disks I want to add to resources:
This is the result, and I haven't been able to get any of my disks to recognize:
Configuration is below, but unless I'm mounting wrong due to a misunderstanding, I don't recognize how these disk sizes aren't being recognized.
docker-compose.yaml:
widgets.yaml:
homepage version
v0.8.13
Installation method
Docker
Configuration
No response
Container Logs
No response
Browser Logs
No response
Troubleshooting
Beta Was this translation helpful? Give feedback.
All reactions