Skip to content

Commit b67c980

Browse files
committed
Do not pull docker image for now
1 parent 50ba2a8 commit b67c980

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

castor.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,12 @@ function create_default_variables(): array
3737
}
3838

3939
#[AsTask(description: 'Builds and starts the infrastructure, then install the application (composer, yarn, ...)')]
40-
function start(bool $build = false): void
40+
function start(): void
4141
{
4242
io()->title('Starting the stack');
4343

4444
generate_certificates(force: false);
45-
if ($build) {
46-
build();
47-
} else {
48-
pull();
49-
}
45+
build();
5046
up(profiles: ['default']); // We can't start worker now, they are not installed
5147
cache_clear();
5248
install();

infrastructure/docker/docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ volumes:
33

44
services:
55
router:
6-
image: "ghcr.io/jolicode/monologue/router:${ROUTER_VERSION:-latest}"
76
build:
87
context: services/router
98
# cache_to:
@@ -23,7 +22,6 @@ services:
2322
- default
2423

2524
frontend:
26-
image: "ghcr.io/jolicode/monologue/frontend:${FRONTEND_VERSION:-latest}"
2725
build:
2826
context: services/php
2927
target: frontend

0 commit comments

Comments
 (0)