Skip to content

Commit

Permalink
Do not pull docker image for now
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrech committed Nov 21, 2024
1 parent 50ba2a8 commit 46d9ce8
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions castor.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 46d9ce8

Please sign in to comment.