diff --git a/.github/workflows/production-build.yml b/.github/workflows/production-build.yml index 2b71b8573..b9c655f6a 100644 --- a/.github/workflows/production-build.yml +++ b/.github/workflows/production-build.yml @@ -2,7 +2,7 @@ name: Production Build (v4) on: push: - branches: ["v4"] + branches: ["v4", "v4-next"] env: REGISTRY: ghcr.io diff --git a/app/Jobs/DeployApplicationJob.php b/app/Jobs/DeployApplicationJob.php index e1780de84..7fdd48190 100644 --- a/app/Jobs/DeployApplicationJob.php +++ b/app/Jobs/DeployApplicationJob.php @@ -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.'", ]); diff --git a/resources/views/server/show.blade.php b/resources/views/server/show.blade.php index bde12916f..1fb710c42 100644 --- a/resources/views/server/show.blade.php +++ b/resources/views/server/show.blade.php @@ -1,8 +1,6 @@

Server

-

Private Key

-

{{ $server->privateKey->private_key }}

Destinations

@if ($server->standaloneDockers) @foreach ($server->standaloneDockers as $docker)