mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-23 14:27:27 +00:00
Add full-width and centered layout preferences across the app shell and workspaces. Replace page-size selects with dropdowns and add searchable breadcrumb switching.
21 lines
881 B
PHP
21 lines
881 B
PHP
<div class="mt-8 w-full max-w-none lg:mt-3">
|
|
<form wire:submit="submit">
|
|
<section class="application-settings-section">
|
|
<div class="application-settings-section-header">
|
|
<div>
|
|
<h2>Dockerfile</h2>
|
|
<p>Create an application directly from a Dockerfile without connecting a Git repository.</p>
|
|
</div>
|
|
<x-forms.button type="submit" wire:target="submit" isHighlighted>Create application</x-forms.button>
|
|
</div>
|
|
<div class="application-settings-section-body p-0!">
|
|
<x-forms.textarea useMonacoEditor monacoEditorLanguage="dockerfile" rows="20"
|
|
id="dockerfile" autofocus placeholder='FROM nginx
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|
|
'></x-forms.textarea>
|
|
</div>
|
|
</section>
|
|
</form>
|
|
</div>
|