Skip to content

Commit

Permalink
Merge pull request #4771 from lucienbl/next
Browse files Browse the repository at this point in the history
fix: pull latest image from registry when using build server
  • Loading branch information
andrasbacsai authored Feb 12, 2025
2 parents 4b7a2b3 + a139cf1 commit 619a42b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Jobs/ApplicationDeploymentJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -2284,7 +2284,7 @@ private function start_by_compose_file()
} else {
if ($this->use_build_server) {
$this->execute_remote_command(
["{$this->coolify_variables} docker compose --project-name {$this->application->uuid} --project-directory {$this->configuration_dir} -f {$this->configuration_dir}{$this->docker_compose_location} up --build -d", 'hidden' => true],
["{$this->coolify_variables} docker compose --project-name {$this->application->uuid} --project-directory {$this->configuration_dir} -f {$this->configuration_dir}{$this->docker_compose_location} up --pull always --build -d", 'hidden' => true],
);
} else {
$this->execute_remote_command(
Expand Down

0 comments on commit 619a42b

Please sign in to comment.