From d0189c57a55d68bd02a4c0fdd9cb544003a21d85 Mon Sep 17 00:00:00 2001 From: Bryan Joshua Pedini Date: Sun, 1 Feb 2026 18:12:28 +0100 Subject: [PATCH] fix(deploy): remove docker compose restart from deployment script Removes the 'docker compose restart' command from the deployment script as it was causing unnecessary service interruptions during deployment. The tar extraction and cleanup steps are sufficient for updating the application files without requiring a full container restart. --- deploy.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index 198db41..9c1c20b 100755 --- a/deploy.sh +++ b/deploy.sh @@ -36,7 +36,6 @@ ssh -o StrictHostKeyChecking=no ${SSH_PRIVATE_KEY} ${SSH_USERNAME}${DEPLOYMENT_H DATAPATH=$(cat .env | grep "NGINX_DATA" | sed "s/NGINX_DATA=//g") rm -rf ${DATAPATH}/{*,.*} tar xf /tmp/httpdocs.tgz -C ${DATAPATH} - docker compose restart rm -f /tmp/httpdocs.tgz EOF rm -f httpdocs.tgz