From 3985cca8cc4e1fd1395907a5a9e2b4cba6dd5946 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 25 Aug 2023 12:40:53 +0200 Subject: [PATCH] add pure dockerfile in seeder --- database/seeders/ApplicationSeeder.php | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/database/seeders/ApplicationSeeder.php b/database/seeders/ApplicationSeeder.php index a43e0f19a..2d2d00cb7 100644 --- a/database/seeders/ApplicationSeeder.php +++ b/database/seeders/ApplicationSeeder.php @@ -17,13 +17,12 @@ class ApplicationSeeder extends Seeder Application::create([ 'name' => 'coollabsio/coolify-examples:nodejs-fastify', 'description' => 'NodeJS Fastify Example', - 'fqdn' => 'http://foo.com', + 'fqdn' => 'http://nodejs.127.0.0.1.sslip.io', 'repository_project_id' => 603035348, 'git_repository' => 'coollabsio/coolify-examples', 'git_branch' => 'nodejs-fastify', 'build_pack' => 'nixpacks', 'ports_exposes' => '3000', - 'ports_mappings' => '3005:3000', 'environment_id' => 1, 'destination_id' => 0, 'destination_type' => StandaloneDocker::class, @@ -33,18 +32,36 @@ class ApplicationSeeder extends Seeder Application::create([ 'name' => 'coollabsio/coolify-examples:dockerfile', 'description' => 'Dockerfile Example', - 'fqdn' => 'http://foos.com', + 'fqdn' => 'http://dockerfile.127.0.0.1.sslip.io', 'repository_project_id' => 603035348, 'git_repository' => 'coollabsio/coolify-examples', 'git_branch' => 'dockerfile', 'build_pack' => 'dockerfile', 'ports_exposes' => '3000', - 'ports_mappings' => '3080:80', 'environment_id' => 1, 'destination_id' => 0, 'destination_type' => StandaloneDocker::class, 'source_id' => 0, 'source_type' => GithubApp::class ]); + Application::create([ + 'name' => 'pure-dockerfile', + 'description' => 'Pure Dockerfile Example', + 'fqdn' => 'http://pure-dockerfile.127.0.0.1.sslip.io', + 'git_repository' => 'coollabsio/coolify', + 'git_branch' => 'main', + 'git_commit_sha' => 'HEAD', + 'build_pack' => 'dockerfile', + 'ports_exposes' => '80', + 'environment_id' => 1, + 'destination_id' => 0, + 'destination_type' => StandaloneDocker::class, + 'source_id' => 0, + 'source_type' => GithubApp::class, + 'dockerfile' => 'FROM nginx +EXPOSE 80 +CMD ["nginx", "-g", "daemon off;"] +' + ]); } }