Implement Keystone environment deployments
This commit is contained in:
21
app/Drivers/Concerns/RendersCompose.php
Normal file
21
app/Drivers/Concerns/RendersCompose.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Drivers\Concerns;
|
||||
|
||||
interface RendersCompose
|
||||
{
|
||||
/**
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function composeService(): array;
|
||||
|
||||
/**
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function composeVolumes(): array;
|
||||
|
||||
/**
|
||||
* @return array<string, string>
|
||||
*/
|
||||
public function environmentExports(): array;
|
||||
}
|
||||
Reference in New Issue
Block a user