From 46d9ce835ec8ad489ff63f741af6c15771fe71c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFck=20Piera?= Date: Thu, 21 Nov 2024 18:37:45 +0100 Subject: [PATCH] Do not pull docker image for now --- castor.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/castor.php b/castor.php index 07fc8b6..5503f30 100644 --- a/castor.php +++ b/castor.php @@ -37,16 +37,12 @@ function create_default_variables(): array } #[AsTask(description: 'Builds and starts the infrastructure, then install the application (composer, yarn, ...)')] -function start(bool $build = false): void +function start(): void { io()->title('Starting the stack'); generate_certificates(force: false); - if ($build) { - build(); - } else { - pull(); - } + build(); up(profiles: ['default']); // We can't start worker now, they are not installed cache_clear(); install();