mirror of
https://github.com/portainer/portainer.git
synced 2025-08-08 15:25:22 +02:00
Some checks are pending
ci / build_images (map[arch:amd64 platform:linux version:]) (push) Waiting to run
ci / build_images (map[arch:amd64 platform:windows version:1809]) (push) Waiting to run
ci / build_images (map[arch:amd64 platform:windows version:ltsc2022]) (push) Waiting to run
ci / build_images (map[arch:arm platform:linux version:]) (push) Waiting to run
ci / build_images (map[arch:arm64 platform:linux version:]) (push) Waiting to run
ci / build_images (map[arch:ppc64le platform:linux version:]) (push) Waiting to run
ci / build_manifests (push) Blocked by required conditions
/ triage (push) Waiting to run
Lint / Run linters (push) Waiting to run
Test / test-client (push) Waiting to run
Test / test-server (map[arch:amd64 platform:linux]) (push) Waiting to run
Test / test-server (map[arch:amd64 platform:windows version:1809]) (push) Waiting to run
Test / test-server (map[arch:amd64 platform:windows version:ltsc2022]) (push) Waiting to run
Test / test-server (map[arch:arm64 platform:linux]) (push) Waiting to run
52 lines
1.7 KiB
HTML
52 lines
1.7 KiB
HTML
<div>
|
|
<rd-widget>
|
|
<rd-widget-header icon="list" title-text="Container spec"></rd-widget-header>
|
|
<rd-widget-body classes="no-padding">
|
|
<table class="!mb-0 table">
|
|
<tbody>
|
|
<tr>
|
|
<td class="w-1/5">CMD</td>
|
|
<td
|
|
><code ng-if="service.Command">{{ service.Command | command }}</code></td
|
|
>
|
|
<td>
|
|
<p class="small text-muted" style="margin-top: 10px"> Command to execute. </p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Args</td>
|
|
<td
|
|
><code ng-if="service.Arguments">{{ service.Arguments }}</code></td
|
|
>
|
|
<td>
|
|
<p class="small text-muted" style="margin-top: 10px"> Arguments passed to command in container. </p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>User</td>
|
|
<td>{{ service.User }}</td>
|
|
<td>
|
|
<p class="small text-muted" style="margin-top: 10px"> Username or UID. </p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Working directory</td>
|
|
<td>{{ service.Dir }}</td>
|
|
<td>
|
|
<p class="small text-muted" style="margin-top: 10px"> Working directory inside the container. </p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Stop grace period</td>
|
|
<td>{{ service.StopGracePeriod }}</td>
|
|
<td>
|
|
<p class="small text-muted" style="margin-top: 10px">
|
|
The duration to wait before forcefully terminating a container (default: 10 seconds as defined by the Docker engine).
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</rd-widget-body>
|
|
</rd-widget>
|
|
</div>
|