As can be seen in the image this is the limit of RAM allocation that the sitema is leaving for apps in the installation preventing updates
I can’t drag it—that’s the problem. I need to manually change everything in the YAML to a whole number. This might be happening because my memory is being detected with non-integer values, but this didn’t happen before this version.
Can you provide a compose file when you can’t drag RAM? After you modify in YAML, can you drag them into the Form?
If I try to update an app, it won’t let me due to the RAM limit; the same happens if I try to install one. The only workaround is to set the limit to 15GB in the YAML editor; the bar turns completely white in the visual editor, but if I tap it, it reverts to 500MB, forcing me to edit the YAML again to proceed with the installation.
Victor, I believe you have identified a regression in the 1.7.0-beta1 visual editor.
A 16 GB system showing approximately 15.06 GB as usable memory is normal and should not prevent the slider from working. The important evidence is that the installation works after entering a whole-number value in YAML, but touching the RAM control changes it back to 512 MB.
That suggests a conversion or rounding problem between the YAML value and the visual editor.
Could you please post the output of these two commands?
free -b
docker info --format 'Docker memory total: {{.MemTotal}} bytes'
Also attach the exported compose file requested by Dina, after removing any passwords, tokens or other private information.
I would not reinstall anything at this stage. This needs to be confirmed and corrected in the beta.
Just an update, Victor. I have now tested the same RAM control on my own 1.7.0-beta1 system.
I increased the allocation to the full 15.37 GB, saved it, reopened the app editor and the value remained correctly.
This means the problem is not affecting every 1.7.0-beta1 installation, so it may be specific to your compose configuration or how the visual editor is parsing the memory value on your system.
I also noticed your interface displays 15,06GB with a decimal comma, while mine displays 15.37GB with a decimal point. This may be relevant, but it is not confirmed.
The command outputs and exported compose file requested above should help identify the exact difference.
Hi, can you record a related video? This will help us be more focused. Also, can you provide this compose file?
It might be a translation issue; I use the Portuguese version, and most items are separated by commas. I’ve never encountered this problem before, so it’s just a guess. I’ll try to record it when I’m home, but I noticed this error when saving—maybe it indicates what the problem is.
Victor, that error confirms your suspicion.
The important part is:
strconv.ParseFloat: parsing "15,06": invalid syntax
The Portuguese interface is formatting the memory value as 15,06, but the backend expects 15.06. Your RAM is being detected correctly. This is a locale/number-formatting bug in the visual editor.
For now, use the YAML editor and set:
deploy:
resources:
limits:
memory: 15GB
reservations:
memory: 512MB
Save directly from the YAML editor and avoid touching the memory slider afterward, as the Portuguese form may convert the value back to a decimal comma.
That screenshot gives the IceWhale team the exact error and a clear way to reproduce it.
I can’t send much right now, but I believe this helps for the time being; thank you both for your attention.






