Fix database restart to skip unnecessary Docker cleanup (#7293)

This commit is contained in:
Andras Bacsai 2025-11-20 17:17:14 +01:00 committed by GitHub
commit 9aff301442
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,7 +22,7 @@ public function handle(StandaloneRedis|StandalonePostgresql|StandaloneMongodb|St
if (! $server->isFunctional()) {
return 'Server is not functional';
}
StopDatabase::run($database);
StopDatabase::run($database, dockerCleanup: false);
return StartDatabase::run($database);
}