Merge pull request #1524 from stooit/feat/application-run-command

Add support for command execution in containers.
This commit is contained in:
Andras Bacsai
2023-12-07 11:29:32 +01:00
committed by GitHub
6 changed files with 151 additions and 0 deletions

View File

@@ -11,6 +11,10 @@
href="{{ route('project.application.logs', $parameters) }}">
<button>Logs</button>
</a>
<a class="{{ request()->routeIs('project.application.command') ? 'text-white' : '' }}"
href="{{ route('project.application.command', $parameters) }}">
<button>Run command</button>
</a>
<x-applications.links :application="$application" />
<div class="flex-1"></div>
@if ($application->build_pack === 'dockercompose' && is_null($application->docker_compose_raw))