New Resource

@foreach ($environments as $environment) @endforeach
Deploy resources, like Applications, Databases, Services...
@if ($current_step === 'type')

Applications

Public Repository
You can deploy any kind of public repositories from the supported git providers.
Private Repository (with GitHub App)
You can deploy public & private repositories through your GitHub Apps.
Private Repository (with deploy key)
You can deploy public & private repositories with a simple deploy key (SSH key).
Based on a Dockerfile
You can deploy a simple Dockerfile, without Git.
Based on a Docker Compose
You can deploy complex application easily with Docker Compose.
Based on an existing Docker Image
You can deploy an existing Docker Image form any Registry.

Databases

New PostgreSQL
The most loved relational database in the world.
New Redis
The open source, in-memory data store for cache, streaming engine, and message broker.
New MongoDB
MongoDB is a source-available cross-platform document-oriented database program.
{{--
Backup Existing PostgreSQL
Schedule a backup of an existing PostgreSQL database.
--}}

Services

Reload Services List
@if ($loadingServices) @else @foreach ($services as $serviceName => $service) @if (data_get($service, 'disabled')) @else @endif @endforeach @endif
Trademarks Policy: The respective trademarks mentioned here are owned by the respective companies, and use of them does not imply any affiliation or endorsement.
@endif @if ($current_step === 'servers')
@forelse($servers as $server)
{{ $server->name }}
{{ $server->description }}
@empty
No validated & reachable servers found. Go to servers page
@endforelse
@endif @if ($current_step === 'destinations')
@foreach ($standaloneDockers as $standaloneDocker)
Standalone Docker ({{ $standaloneDocker->name }})
network: {{ $standaloneDocker->network }}
@endforeach @foreach ($swarmDockers as $swarmDocker)
Swarm Docker ({{ $swarmDocker->name }})
@endforeach
@endif @if ($current_step === 'existing-postgresql')
Add Database @endif