Fix: Grist ran into a heap space during the update (#1964)

This commit is contained in:
CanbiZ 2025-02-03 09:26:08 +01:00 committed by GitHub
parent e379db8baf
commit 36f2fb3e52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -5,9 +5,9 @@ source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/m
# App Default Values # App Default Values
APP="Grist" APP="Grist"
var_tags="database;spreadsheet" var_tags="database;spreadsheet"
var_cpu="1" var_cpu="2"
var_ram="2048" var_ram="3072"
var_disk="4" var_disk="6"
var_os="debian" var_os="debian"
var_version="12" var_version="12"
var_unprivileged="1" var_unprivileged="1"

View File

@ -18,9 +18,9 @@
"type": "default", "type": "default",
"script": "ct/grist.sh", "script": "ct/grist.sh",
"resources": { "resources": {
"cpu": 1, "cpu": 2,
"ram": 1024, "ram": 3072,
"hdd": 4, "hdd": 6,
"os": "debian", "os": "debian",
"version": "12" "version": "12"
} }