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)
This commit is contained in:
2025-11-04 16:01:49 +01:00
parent 6e1faabdc1
commit 870db892e7

View File

@@ -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',