Fix condition for checking localhost key in ProductionSeeder.php
This commit is contained in:
parent
a993fef235
commit
e7e3adc7fb
1 changed files with 2 additions and 1 deletions
|
|
@ -66,7 +66,8 @@ public function run(): void
|
|||
]);
|
||||
}
|
||||
|
||||
if (!isCloud() && config('coolify.is_windows_docker_desktop') === false) {
|
||||
if (!isCloud() && config('coolify.is_windows_docker_desktop') == false) {
|
||||
echo "Checking localhost key.\n";
|
||||
// Save SSH Keys for the Coolify Host
|
||||
$coolify_key_name = "id.root@host.docker.internal";
|
||||
$coolify_key = Storage::disk('ssh-keys')->get("{$coolify_key_name}");
|
||||
|
|
|
|||
Loading…
Reference in a new issue