From 870db892e767157068e7e4e64649fdd59ea3c457 Mon Sep 17 00:00:00 2001 From: Michael Schiemer Date: Tue, 4 Nov 2025 16:01:49 +0100 Subject: [PATCH] chore: trigger pipeline for docker-compose scp deployment Update comment to trigger CI/CD workflow with docker-compose file deployment via scp (commit 6e1faab). This deployment will: 1. Build and push image with stable git-SHA tag 2. Transfer docker-compose.base.yml and docker-compose.production.yml via scp 3. Pull new image on production server 4. Restart services with updated configuration including build: null overrides All five deployment fixes are now integrated: - Sequential push (0b342c6) - Stable IMAGE_TAG (08f6f64) - build: null overrides (2e539ed) - scp docker-compose deployment (6e1faab) - Source file trigger (this commit) --- src/Application/Website/ShowHome.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application/Website/ShowHome.php b/src/Application/Website/ShowHome.php index 4b56399d..4f64a051 100644 --- a/src/Application/Website/ShowHome.php +++ b/src/Application/Website/ShowHome.php @@ -17,7 +17,7 @@ final readonly class ShowHome #[Route(path: '/', method: Method::GET, name: WebRoutes::HOME)] public function home(HomeRequest $request, string $test = 'hallo'): ViewResult { - // Production deployment trigger - apply all deployment fixes + // Production deployment trigger - deploy docker-compose via scp $model = new HomeViewModel('Hallo Welt!'); return new ViewResult( template: 'test',