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

@ -2,7 +2,7 @@ name: Production Build (v4)
on:
push:
branches: ["v4"]
branches: ["v4", "v4-next"]
env:
REGISTRY: ghcr.io

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.'",
]);

View File

@ -1,8 +1,6 @@
<x-layout>
<h1>Server</h1>
<livewire:server.form :server_id="$server->id" />
<h2>Private Key</h2>
<p>{{ $server->privateKey->private_key }}</p>
<h2>Destinations</h2>
@if ($server->standaloneDockers)
@foreach ($server->standaloneDockers as $docker)