Immich: increase disk to 16GB; add message about RAM usage for OpenVINO option

This commit is contained in:
vhsdream 2025-05-23 13:11:36 -04:00
parent ba74e60fe3
commit 42641590a9
2 changed files with 7 additions and 3 deletions

View File

@ -7,7 +7,7 @@ source <(curl -s https://git.community-scripts.org/community-scripts/ProxmoxVED/
APP="immich" APP="immich"
var_tags="${var_tags:-photos}" var_tags="${var_tags:-photos}"
var_disk="${var_disk:-12}" var_disk="${var_disk:-16}"
var_cpu="${var_cpu:-4}" var_cpu="${var_cpu:-4}"
var_ram="${var_ram:-4096}" var_ram="${var_ram:-4096}"
var_os="${var_os:-debian}" var_os="${var_os:-debian}"

View File

@ -21,7 +21,7 @@
"resources": { "resources": {
"cpu": 4, "cpu": 4,
"ram": 4096, "ram": 4096,
"hdd": 12, "hdd": 16,
"os": "Debian", "os": "Debian",
"version": "12" "version": "12"
} }
@ -33,7 +33,11 @@
}, },
"notes": [ "notes": [
{ {
"text": "During installation, HW-accelerated machine-learning is an available option. This also allows for HW-accelerated transcoding, but it must be enabled in Video Transcoding Settings", "text": "During installation, HW-accelerated machine-learning (with OpenVINO) is an available option. This also allows for HW-accelerated transcoding, but it must be enabled in Video Transcoding Settings",
"type": "info"
},
{
"text": "If using OpenVINO HW machine-learning, increase RAM because OpenVINO is memory-intensive",
"type": "info" "type": "info"
} }
] ]