fix: missing docker image thing

This commit is contained in:
Andras Bacsai 2023-12-04 11:41:44 +01:00
parent 76296c1f19
commit 45d2f80f69
4 changed files with 10 additions and 8 deletions

View File

@ -7,7 +7,7 @@ return [
// The release version of your application // The release version of your application
// Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')) // Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD'))
'release' => '4.0.0-beta.152', 'release' => '4.0.0-beta.153',
// When left empty or `null` the Laravel environment will be used // When left empty or `null` the Laravel environment will be used
'environment' => config('app.env'), 'environment' => config('app.env'),

View File

@ -1,3 +1,3 @@
<?php <?php
return '4.0.0-beta.152'; return '4.0.0-beta.153';

View File

@ -67,15 +67,17 @@
@endif @endif
</div> </div>
@endif @endif
@if ($application->build_pack !== 'dockerimage' && $application->build_pack !== 'dockercompose') @if ($application->build_pack !== 'dockercompose')
<h3>Docker Registry</h3> <h3>Docker Registry</h3>
@if ($application->destination->server->isSwarm()) @if ($application->destination->server->isSwarm())
<div>Docker Swarm requires the image to be available in a registry. More info <a class="underline" <div>Docker Swarm requires the image to be available in a registry. More info <a class="underline"
href="https://coolify.io/docs/docker-registries" target="_blank">here</a>.</div> href="https://coolify.io/docs/docker-registries" target="_blank">here</a>.</div>
@else @else
@if ($application->build_pack !== 'dockerimage')
<div>Push the built image to a docker registry. More info <a class="underline" <div>Push the built image to a docker registry. More info <a class="underline"
href="https://coolify.io/docs/docker-registries" target="_blank">here</a>.</div> href="https://coolify.io/docs/docker-registries" target="_blank">here</a>.</div>
@endif @endif
@endif
<div class="flex flex-col gap-2 xl:flex-row"> <div class="flex flex-col gap-2 xl:flex-row">
@if ($application->build_pack === 'dockerimage') @if ($application->build_pack === 'dockerimage')
@if ($application->destination->server->isSwarm()) @if ($application->destination->server->isSwarm())

View File

@ -4,7 +4,7 @@
"version": "3.12.36" "version": "3.12.36"
}, },
"v4": { "v4": {
"version": "4.0.0-beta.152" "version": "4.0.0-beta.153"
} }
} }
} }