Increase RAM for LXC (#9460)

This commit is contained in:
Slaviša Arežina 2025-11-26 13:49:07 +01:00 committed by GitHub
parent 7184755a0f
commit 7d435a1a5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View File

@ -8,7 +8,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
APP="Joplin-Server" APP="Joplin-Server"
var_tags="${var_tags:-notes}" var_tags="${var_tags:-notes}"
var_cpu="${var_cpu:-2}" var_cpu="${var_cpu:-2}"
var_ram="${var_ram:-4096}" var_ram="${var_ram:-6144}"
var_disk="${var_disk:-20}" var_disk="${var_disk:-20}"
var_os="${var_os:-debian}" var_os="${var_os:-debian}"
var_version="${var_version:-13}" var_version="${var_version:-13}"

View File

@ -20,7 +20,7 @@
"script": "ct/joplin-server.sh", "script": "ct/joplin-server.sh",
"resources": { "resources": {
"cpu": 2, "cpu": 2,
"ram": 4096, "ram": 6144,
"hdd": 20, "hdd": 20,
"os": "Debian", "os": "Debian",
"version": "13" "version": "13"
@ -35,6 +35,10 @@
{ {
"text": "Application can take some time to build, depending on your host speed. Please be patient.", "text": "Application can take some time to build, depending on your host speed. Please be patient.",
"type": "info" "type": "info"
},
{
"text": "Default RAM size for LXC is set to 6GB because of Node.js building process. You can lower it after application installs",
"type": "info"
} }
] ]
} }