moved width class on parent
This commit is contained in:
parent
0e217f48be
commit
7cd02b4916
@ -1,10 +1,10 @@
|
|||||||
<div>
|
<div>
|
||||||
<div class="flex flex-col">
|
<div class="flex flex-col md:w-96">
|
||||||
<div class="flex items-center gap-2">
|
<div class="flex items-center gap-2">
|
||||||
<h2>Advanced</h2>
|
<h2>Advanced</h2>
|
||||||
</div>
|
</div>
|
||||||
<div>Advanced configuration for your application.</div>
|
<div>Advanced configuration for your application.</div>
|
||||||
<div class="flex flex-col gap-1 pt-4 md:w-96">
|
<div class="flex flex-col gap-1 pt-4">
|
||||||
<h3>General</h3>
|
<h3>General</h3>
|
||||||
@if ($application->git_based())
|
@if ($application->git_based())
|
||||||
<x-forms.checkbox helper="Automatically deploy new commits based on Git webhooks." instantSave
|
<x-forms.checkbox helper="Automatically deploy new commits based on Git webhooks." instantSave
|
||||||
@ -32,11 +32,9 @@
|
|||||||
@endif
|
@endif
|
||||||
@if ($application->build_pack === 'dockercompose')
|
@if ($application->build_pack === 'dockercompose')
|
||||||
<h3>Network</h3>
|
<h3>Network</h3>
|
||||||
<div class="w-96">
|
<x-forms.checkbox instantSave id="application.settings.connect_to_docker_network"
|
||||||
<x-forms.checkbox instantSave id="application.settings.connect_to_docker_network"
|
label="Connect To Predefined Network"
|
||||||
label="Connect To Predefined Network"
|
helper="By default, you do not reach the Coolify defined networks.<br>Starting a docker compose based resource will have an internal network. <br>If you connect to a Coolify defined network, you maybe need to use different internal DNS names to connect to a resource.<br><br>For more information, check <a class='underline dark:text-white' target='_blank' href='https://coolify.io/docs/knowledge-base/docker/compose#connect-to-predefined-networks'>this</a>." />
|
||||||
helper="By default, you do not reach the Coolify defined networks.<br>Starting a docker compose based resource will have an internal network. <br>If you connect to a Coolify defined network, you maybe need to use different internal DNS names to connect to a resource.<br><br>For more information, check <a class='underline dark:text-white' target='_blank' href='https://coolify.io/docs/knowledge-base/docker/compose#connect-to-predefined-networks'>this</a>." />
|
|
||||||
</div>
|
|
||||||
@endif
|
@endif
|
||||||
@if (!$application->settings->is_raw_compose_deployment_enabled)
|
@if (!$application->settings->is_raw_compose_deployment_enabled)
|
||||||
<h3>Logs</h3>
|
<h3>Logs</h3>
|
||||||
@ -60,16 +58,14 @@
|
|||||||
@endif
|
@endif
|
||||||
<form wire:submit="submit">
|
<form wire:submit="submit">
|
||||||
@if ($application->build_pack !== 'dockercompose')
|
@if ($application->build_pack !== 'dockercompose')
|
||||||
<div class="w-96">
|
<x-forms.checkbox
|
||||||
<x-forms.checkbox
|
helper="Enable GPU usage for this application. More info <a href='https://docs.docker.com/compose/gpu-support/' class='underline dark:text-white' target='_blank'>here</a>."
|
||||||
helper="Enable GPU usage for this application. More info <a href='https://docs.docker.com/compose/gpu-support/' class='underline dark:text-white' target='_blank'>here</a>."
|
instantSave id="application.settings.is_gpu_enabled" label="Attach GPU" />
|
||||||
instantSave id="application.settings.is_gpu_enabled" label="Attach GPU" />
|
@if ($application->settings->is_gpu_enabled)
|
||||||
@if ($application->settings->is_gpu_enabled)
|
<h5>GPU Settings</h5>
|
||||||
<h5>GPU Settings</h5>
|
|
||||||
|
|
||||||
<x-forms.button type="submit">Save</x-forms.button>
|
<x-forms.button type="submit">Save</x-forms.button>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
|
||||||
@endif
|
@endif
|
||||||
@if ($application->settings->is_gpu_enabled)
|
@if ($application->settings->is_gpu_enabled)
|
||||||
<div class="flex flex-col w-full gap-2 p-2 xl:flex-row">
|
<div class="flex flex-col w-full gap-2 p-2 xl:flex-row">
|
||||||
|
Loading…
Reference in New Issue
Block a user