From 61c4736125d685273e9db7ae9d5e8dfbf4d4a767 Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Fri, 14 Nov 2025 13:53:22 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9C=20chore:=20Update=20deployed-updat?= =?UTF-8?q?e.js=20to=20use=20'docker=20compose'=20syntax?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/deployed-update.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/deployed-update.js b/config/deployed-update.js index 5b1072f841..a95f97bc7b 100644 --- a/config/deployed-update.js +++ b/config/deployed-update.js @@ -36,7 +36,7 @@ const shouldRebase = process.argv.includes('--rebase'); } console.purple('Removing previously made Docker container...'); - const downCommand = 'sudo docker-compose -f ./deploy-compose.yml down'; + const downCommand = 'sudo docker compose -f ./deploy-compose.yml down'; console.orange(downCommand); execSync(downCommand, { stdio: 'inherit' }); @@ -54,15 +54,15 @@ const shouldRebase = process.argv.includes('--rebase'); }); console.purple('Pulling latest LibreChat images...'); - const pullCommand = 'sudo docker-compose -f ./deploy-compose.yml pull api'; + const pullCommand = 'sudo docker compose -f ./deploy-compose.yml pull api'; console.orange(pullCommand); execSync(pullCommand, { stdio: 'inherit' }); - let startCommand = 'sudo docker-compose -f ./deploy-compose.yml up -d'; + let startCommand = 'sudo docker compose -f ./deploy-compose.yml up -d'; console.green('Your LibreChat app is now up to date! Start the app with the following command:'); console.purple(startCommand); console.orange( - 'Note: it\'s also recommended to clear your browser cookies and localStorage for LibreChat to assure a fully clean installation.', + "Note: it's also recommended to clear your browser cookies and localStorage for LibreChat to assure a fully clean installation.", ); - console.orange('Also: Don\'t worry, your data is safe :)'); + console.orange("Also: Don't worry, your data is safe :)"); })();