Update database start commands

This commit is contained in:
Andras Bacsai
2024-02-07 20:34:13 +01:00
parent dadc7aaf08
commit 9edbc15828
9 changed files with 9 additions and 9 deletions

View File

@@ -107,7 +107,7 @@ class StartMysql
$this->commands[] = "docker compose -f $this->configuration_dir/docker-compose.yml pull";
$this->commands[] = "docker compose -f $this->configuration_dir/docker-compose.yml up -d";
$database_name = addslashes($database->name);
$this->commands[] = "echo '{$database_name} started.'";
$this->commands[] = "echo 'Database started.'";
return remote_process($this->commands, $database->destination->server,callEventOnFinish: 'DatabaseStatusChanged');
}