mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
98 lines
5.7 KiB
PHP
98 lines
5.7 KiB
PHP
<form wire:submit="submit">
|
|
<div class="flex gap-2 pb-2">
|
|
<h2>Scheduled Backup</h2>
|
|
<x-forms.button type="submit">
|
|
Save
|
|
</x-forms.button>
|
|
@if (str($status)->startsWith('running'))
|
|
<livewire:project.database.backup-now :backup="$backup" />
|
|
@endif
|
|
@if ($backup->database_id !== 0)
|
|
<x-modal-confirmation title="Confirm Backup Schedule Deletion?" buttonTitle="Delete Backups and Schedule"
|
|
isErrorButton submitAction="delete" :checkboxes="$checkboxes" :actions="[
|
|
'The selected backup schedule will be deleted.',
|
|
'Scheduled backups for this database will be stopped (if this is the only backup schedule for this database).',
|
|
]"
|
|
confirmationText="{{ $backup->database->name }}"
|
|
confirmationLabel="Please confirm the execution of the actions by entering the Database Name of the scheduled backups below"
|
|
shortConfirmationLabel="Database Name" />
|
|
@endif
|
|
</div>
|
|
<div class="w-64 pb-2">
|
|
<x-forms.checkbox instantSave label="Backup Enabled" id="backupEnabled" />
|
|
@if ($s3s->count() > 0)
|
|
<x-forms.checkbox instantSave label="S3 Enabled" id="saveS3" />
|
|
@else
|
|
<x-forms.checkbox instantSave helper="No validated S3 storage available." label="S3 Enabled" id="saveS3"
|
|
disabled />
|
|
@endif
|
|
@if ($backup->save_s3)
|
|
<x-forms.checkbox instantSave label="Disable Local Backup" id="disableLocalBackup"
|
|
helper="When enabled, backup files will be deleted from local storage immediately after uploading to S3. This requires S3 backup to be enabled." />
|
|
@else
|
|
<x-forms.checkbox disabled label="Disable Local Backup" id="disableLocalBackup"
|
|
helper="When enabled, backup files will be deleted from local storage immediately after uploading to S3. This requires S3 backup to be enabled." />
|
|
@endif
|
|
</div>
|
|
@if ($backup->save_s3)
|
|
<div class="pb-6">
|
|
<x-forms.select id="s3StorageId" label="S3 Storage" required>
|
|
<option value="default" disabled>Select a S3 storage</option>
|
|
@foreach ($s3s as $s3)
|
|
<option value="{{ $s3->id }}">{{ $s3->name }}</option>
|
|
@endforeach
|
|
</x-forms.select>
|
|
</div>
|
|
@endif
|
|
<div class="flex flex-col gap-2">
|
|
<h3>Settings</h3>
|
|
<div class="flex gap-2">
|
|
<x-forms.input label="Frequency" id="frequency" />
|
|
<x-forms.input label="Timezone" id="timezone" disabled
|
|
helper="The timezone of the server where the backup is scheduled to run (if not set, the instance timezone will be used)" />
|
|
<x-forms.input label="Timeout" id="timeout" helper="The timeout of the backup job in seconds." />
|
|
</div>
|
|
|
|
<h3 class="mt-6 mb-2 text-lg font-medium">Backup Retention Settings</h3>
|
|
<div class="mb-4">
|
|
<ul class="list-disc pl-6 space-y-2">
|
|
<li>Setting a value to 0 means unlimited retention.</li>
|
|
<li>The retention rules work independently - whichever limit is reached first will trigger cleanup.</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="flex gap-6 flex-col">
|
|
<div>
|
|
<h4 class="mb-3 font-medium">Local Backup Retention</h4>
|
|
<div class="flex gap-2">
|
|
<x-forms.input label="Number of backups to keep" id="databaseBackupRetentionAmountLocally"
|
|
type="number" min="0"
|
|
helper="Keeps only the specified number of most recent backups on the server. Set to 0 for unlimited backups." />
|
|
<x-forms.input label="Days to keep backups" id="databaseBackupRetentionDaysLocally" type="number"
|
|
min="0"
|
|
helper="Automatically removes backups older than the specified number of days. Set to 0 for no time limit." />
|
|
<x-forms.input label="Maximum storage (GB)" id="databaseBackupRetentionMaxStorageLocally"
|
|
type="number" min="0"
|
|
helper="When total size of all backups in the current backup job exceeds this limit in GB, the oldest backups will be removed. Decimal values are supported (e.g. 0.001 for 1MB). Set to 0 for unlimited storage." />
|
|
</div>
|
|
</div>
|
|
|
|
@if ($backup->save_s3)
|
|
<div>
|
|
<h4 class="mb-3 font-medium">S3 Storage Retention</h4>
|
|
<div class="flex gap-2">
|
|
<x-forms.input label="Number of backups to keep" id="databaseBackupRetentionAmountS3"
|
|
type="number" min="0"
|
|
helper="Keeps only the specified number of most recent backups on S3 storage. Set to 0 for unlimited backups." />
|
|
<x-forms.input label="Days to keep backups" id="databaseBackupRetentionDaysS3" type="number"
|
|
min="0"
|
|
helper="Automatically removes S3 backups older than the specified number of days. Set to 0 for no time limit." />
|
|
<x-forms.input label="Maximum storage (GB)" id="databaseBackupRetentionMaxStorageS3"
|
|
type="number" min="0"
|
|
helper="When total size of all backups in the current backup job exceeds this limit in GB, the oldest backups will be removed. Decimal values are supported (e.g. 0.5 for 500MB). Set to 0 for unlimited storage." />
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</form>
|