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

19 lines
858 B
PHP
Raw Normal View History

2023-10-09 13:49:48 +00: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 18:06:32 +00:00
<form wire:submit="submit">
<div class="flex gap-2 pt-4 pb-1">
2023-10-09 13:49:48 +00:00
<h2>Docker Image</h2>
<x-forms.button type="submit">Save</x-forms.button>
</div>
<div class="space-y-4">
<x-forms.textarea
id="dockerImage"
placeholder="nginx:latest or ghcr.io/benjaminehowe/rail-disruptions:sha256-59e02939b1bf39f16c93138a28727aec520bb916da021180ae502c61626b3cf0"
helper="Enter a Docker image with tag or SHA256 hash. Examples:<br>• nginx:latest<br>• ghcr.io/user/app:v1.2.3<br>• sha256-59e02939b1bf39f16c93138a28727aec520bb916da021180ae502c61626b3cf0"
rows="3"
/>
</div>
2023-10-09 13:49:48 +00:00
</form>
</div>