From f8d6ce27306701c5244e83f83ddc6859668aee79 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 2 Sep 2024 10:22:10 +0200 Subject: [PATCH] Update memory limit to 128MB in horizon configuration --- config/horizon.php | 2 +- scripts/install.sh | 2 +- scripts/upgrade.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/horizon.php b/config/horizon.php index 4d25e40bc..939d74883 100644 --- a/config/horizon.php +++ b/config/horizon.php @@ -186,7 +186,7 @@ 'balance' => env('HORIZON_BALANCE', 'auto'), 'maxTime' => 0, 'maxJobs' => 0, - 'memory' => 64, + 'memory' => 128, 'tries' => 1, 'timeout' => 3560, 'nice' => 0, diff --git a/scripts/install.sh b/scripts/install.sh index 01fdcbc41..e886c2ecf 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -9,7 +9,7 @@ set -o pipefail # Cause a pipeline to return the status of the last command that VERSION="1.3.4" DOCKER_VERSION="26.0" -CDN="https://cdn.coollabs.io/coolify-nightly" +CDN="https://cdn.coollabs.io/coolify" OS_TYPE=$(grep -w "ID" /etc/os-release | cut -d "=" -f 2 | tr -d '"') ENV_FILE="/data/coolify/source/.env" diff --git a/scripts/upgrade.sh b/scripts/upgrade.sh index 775cd3f81..811297a53 100644 --- a/scripts/upgrade.sh +++ b/scripts/upgrade.sh @@ -2,7 +2,7 @@ ## Do not modify this file. You will lose the ability to autoupdate! VERSION="1.0.6" -CDN="https://cdn.coollabs.io/coolify-nightly" +CDN="https://cdn.coollabs.io/coolify" curl -fsSL $CDN/docker-compose.yml -o /data/coolify/source/docker-compose.yml curl -fsSL $CDN/docker-compose.prod.yml -o /data/coolify/source/docker-compose.prod.yml