fix:new parser only in dev
This commit is contained in:
@@ -1167,10 +1167,23 @@ function dockerComposeParserForApplications(Application $application): Collectio
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
// ray($environment);
|
||||
$environment = $application->environment_variables()->where('application_id', $application->id)->get()->mapWithKeys(function ($item) {
|
||||
return [$item['key'] => $item['value']];
|
||||
});
|
||||
|
||||
// if ($environment?->count() > 0) {
|
||||
// $environment = $environment->map(function ($value, $key) use ($application) {
|
||||
// $found = $application->environment_variables()->where('key', $key)->where('application_id', $application->id)->first();
|
||||
// if ($found) {
|
||||
// $value = $found->value;
|
||||
// }
|
||||
|
||||
// return $value;
|
||||
// });
|
||||
// }
|
||||
|
||||
// Labels
|
||||
$fqdns = collect([]);
|
||||
if ($application?->serviceType()) {
|
||||
|
||||
Reference in New Issue
Block a user