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, without Git.
Based on an existing Docker Image
You can deploy an existing Docker Image form any Registry, without Git.

Databases

New PostgreSQL
PostgreSQL is an open-source, object-relational database management system known for its robustness, advanced features, and strong standards compliance.
New Redis
Redis is an open-source, in-memory data structure store used as a database, cache, and message broker, known for its high performance, flexibility, and rich data structures.
New MongoDB
MongoDB is a source-available, NoSQL database program that uses JSON-like documents with optional schemas, known for its flexibility, scalability, and wide range of application use cases.
New MySQL
MySQL is an open-source relational database management system known for its speed, reliability, and flexibility in managing and accessing data.
New Mariadb
MariaDB is an open-source relational database management system that serves as a drop-in replacement for MySQL, offering more robust, scalable, and reliable SQL server capabilities.
{{--
Backup Existing PostgreSQL
Schedule a backup of an existing PostgreSQL database.
--}}

Services

Reload Services List
@if ($loadingServices) @else @forelse ($services as $serviceName => $service) @if (data_get($service, 'disabled')) @else @endif @empty
No service found. Please try to reload the list!
@endforelse @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
+ Add New
@endif @if ($current_step === 'existing-postgresql')
Add Database @endif