show debug

This commit is contained in:
Andras Bacsai
2023-05-02 14:30:15 +02:00
parent 4706414e26
commit 53e2960ffd
3 changed files with 2 additions and 4 deletions

View File

@@ -123,7 +123,7 @@ class DeployApplicationJob implements ShouldQueue
$this->executeNow([
"echo 'Starting deployment of {$this->application->git_repository}:{$this->application->git_branch}...'",
"echo -n 'Pulling latest version of the builder image (ghcr.io/coollabsio/coolify-builder)... '",
"docker run --pull=always -d --name {$this->deployment_uuid} --rm -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/coollabsio/coolify-builder >/dev/null 2>&1",
"docker run --pull=always -d --name {$this->deployment_uuid} --rm -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/coollabsio/coolify-builder",
"echo 'Done.'",
]);