diff --git a/CHANGELOG.md b/CHANGELOG.md index 0499074e..26ddcaae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,8 @@ All LXC instances created using this repository come pre-installed with Midnight - NEW Script - **Wavelog LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/wavelog-install.sh) - NEW Script +- **Vaultwarden LXC:** RAM has now been increased to 6144 MB [(PR)](https://github.com/community-scripts/ProxmoxVE/pull/285) + - Breaking Change ## 2024-11-05 diff --git a/ct/vaultwarden.sh b/ct/vaultwarden.sh index d85bf4b8..be1b9f76 100644 --- a/ct/vaultwarden.sh +++ b/ct/vaultwarden.sh @@ -21,7 +21,7 @@ echo -e "Loading..." APP="Vaultwarden" var_disk="6" var_cpu="4" -var_ram="5120" +var_ram="6144" var_os="debian" var_version="12" variables @@ -72,6 +72,8 @@ function update_script() { 3>&1 1>&2 2>&3) header_info + check_container_storage + check_container_resources if [ "$UPD" == "1" ]; then whiptail --backtitle "Proxmox VE Helper Scripts" --msgbox --title "SET RESOURCES" "Please set the resources in your ${APP} LXC to ${var_cpu}vCPU and ${var_ram}RAM for the build process before continuing" 10 75 msg_info "Stopping Vaultwarden" diff --git a/json/vaultwarden.json b/json/vaultwarden.json index d5d5c66e..a3c7caa0 100644 --- a/json/vaultwarden.json +++ b/json/vaultwarden.json @@ -19,7 +19,7 @@ "script": "ct/vaultwarden.sh", "resources": { "cpu": "4", - "ram": "5120", + "ram": "6144", "hdd": "6", "os": "debian", "version": "12"