We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa28c99 commit d006edcCopy full SHA for d006edc
database/seeders/ProductionSeeder.php
@@ -65,7 +65,7 @@ public function run(): void
65
]);
66
}
67
// Add Coolify host (localhost) as Server if it doesn't exist
68
- if (Server::find(0) == null) {
+ if (Server::find(0) == null && ! isCloud()) {
69
$server_details = [
70
'id' => 0,
71
'name' => 'localhost',
@@ -89,7 +89,7 @@ public function run(): void
89
$server->settings->is_usable = true;
90
$server->settings->save();
91
92
- if (StandaloneDocker::find(0) == null) {
+ if (StandaloneDocker::find(0) == null && ! isCloud()) {
93
StandaloneDocker::create([
94
95
'name' => 'localhost-coolify',
0 commit comments