Merge branch 'next' of github.com:coollabsio/coolify into next

This commit is contained in:
Andras Bacsai
2024-08-16 11:36:23 +02:00

View File

@@ -12,6 +12,7 @@ class StandaloneDockerSeeder extends Seeder
*/ */
public function run(): void public function run(): void
{ {
if (StandaloneDocker::find(0) == null) {
StandaloneDocker::create([ StandaloneDocker::create([
'id' => 0, 'id' => 0,
'name' => 'Standalone Docker 1', 'name' => 'Standalone Docker 1',
@@ -20,3 +21,4 @@ class StandaloneDockerSeeder extends Seeder
]); ]);
} }
} }
}