mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-23 14:27:27 +00:00
Use shared listbox for private-repo selection, align listbox trigger heights with form inputs, restore compose editor spacing and full width, and wire loading states on create/continue actions.
23 lines
879 B
PHP
23 lines
879 B
PHP
<div class="mt-8 w-full lg:mt-3">
|
|
<form wire:submit="submit">
|
|
<section class="application-settings-section">
|
|
<div class="application-settings-section-header">
|
|
<div>
|
|
<h2>Docker Compose</h2>
|
|
<p>Create a multi-container service directly from a Compose file.</p>
|
|
</div>
|
|
<x-forms.button type="submit" wire:target="submit" isHighlighted>Create service</x-forms.button>
|
|
</div>
|
|
<div class="application-settings-section-body">
|
|
<x-forms.textarea useMonacoEditor monacoEditorLanguage="yaml" label="Docker Compose file"
|
|
rows="20" id="dockerComposeRaw" autofocus placeholder='services:
|
|
app:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "80"
|
|
'></x-forms.textarea>
|
|
</div>
|
|
</section>
|
|
</form>
|
|
</div>
|