coolify/resources/views/livewire/project/new/docker-image.blade.php

12 lines
435 B
PHP
Raw Normal View History

2023-10-09 15:49:48 +02:00
<div>
<h1>Create a new Application</h1>
<div class="pb-4">You can deploy an existing Docker Image from any Registry.</div>
2023-12-07 19:06:32 +01:00
<form wire:submit="submit">
<div class="flex gap-2 pt-4 pb-1">
2023-10-09 15:49:48 +02:00
<h2>Docker Image</h2>
<x-forms.button type="submit">Save</x-forms.button>
</div>
2023-10-10 11:16:38 +02:00
<x-forms.input rows="20" id="dockerImage" placeholder="nginx:latest"></x-forms.textarea>
2023-10-09 15:49:48 +02:00
</form>
</div>