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 :)"); })();