diff --git a/lakedrops-execute.yml b/lakedrops-execute.yml
index 08f16b20e64f77911768a1faddb216ed46d091ea..ddffc01cc0240e8c060b157669a6792fd276ba6a 100644
--- a/lakedrops-execute.yml
+++ b/lakedrops-execute.yml
@@ -54,3 +54,6 @@ Deploy:
 
 DeployNG:
   extends: '.deployartefact-ng'
+
+Shut Down Docker Project:
+  extends: 'shutdowndockerproject'
diff --git a/test-and-deploy.yml b/test-and-deploy.yml
index 5b7592f3e9392edb8255c76f5be7afeff09a54ff..6a29707c64f4043a207077574276ebd05f77f2f2 100644
--- a/test-and-deploy.yml
+++ b/test-and-deploy.yml
@@ -844,3 +844,17 @@ Debug:
     - if: '$IGNORE_COMPOSER_EXTENDED_AUDIT == "0"'
       when: always
     - when: never
+
+.shutdowndockerproject:
+  stage: finalize
+  tags:
+    - default
+  <<: *retry-for-system-issues
+  image: registry.lakedrops.com/docker/gitlab-drupal-ci/php-${PHP_MAJOR_VERSION}.${PHP_MINOR_VERSION}
+  cache:
+    <<: *cache_default
+    policy: pull
+  script:
+    - docker compose down
+  dependencies:
+    - 'Build Site'