From e97d680e756b0c98efd49cbd9794e4c9ea75b6de Mon Sep 17 00:00:00 2001 From: highperfocused Date: Wed, 21 Jan 2026 22:33:35 +0100 Subject: [PATCH] fix: add step to stop existing services before deploying updates --- .github/workflows/deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f95c070..5dcf895 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -51,6 +51,9 @@ jobs: # pull images (if using remote images), then apply updates docker compose pull + # stop existing services to release resources + docker compose down + # bring up updated services docker compose up -d --remove-orphans