mirror of https://github.com/docker/cli.git
Windows: Add cpu count option
Signed-off-by: Darren Stahl <darst@microsoft.com>
This commit is contained in:
parent
7b024c69ee
commit
09e1fc1540
|
@ -31,6 +31,9 @@ Options:
|
||||||
--cap-drop value Drop Linux capabilities (default [])
|
--cap-drop value Drop Linux capabilities (default [])
|
||||||
--cgroup-parent string Optional parent cgroup for the container
|
--cgroup-parent string Optional parent cgroup for the container
|
||||||
--cidfile string Write the container ID to the file
|
--cidfile string Write the container ID to the file
|
||||||
|
--cpu-count int The number of CPUs available for execution by the container.
|
||||||
|
Windows daemon only. On Windows Server containers, this is
|
||||||
|
approximated as a percentage of total CPU usage.
|
||||||
--cpu-percent int CPU percent (Windows only)
|
--cpu-percent int CPU percent (Windows only)
|
||||||
--cpu-period int Limit CPU CFS (Completely Fair Scheduler) period
|
--cpu-period int Limit CPU CFS (Completely Fair Scheduler) period
|
||||||
--cpu-quota int Limit CPU CFS (Completely Fair Scheduler) quota
|
--cpu-quota int Limit CPU CFS (Completely Fair Scheduler) quota
|
||||||
|
|
|
@ -29,7 +29,14 @@ Options:
|
||||||
--cap-drop value Drop Linux capabilities (default [])
|
--cap-drop value Drop Linux capabilities (default [])
|
||||||
--cgroup-parent string Optional parent cgroup for the container
|
--cgroup-parent string Optional parent cgroup for the container
|
||||||
--cidfile string Write the container ID to the file
|
--cidfile string Write the container ID to the file
|
||||||
--cpu-percent int CPU percent (Windows only)
|
--cpu-count int The number of CPUs available for execution by the container.
|
||||||
|
Windows daemon only. On Windows Server containers, this is
|
||||||
|
approximated as a percentage of total CPU usage.
|
||||||
|
--cpu-percent int Limit percentage of CPU available for execution
|
||||||
|
by the container. Windows daemon only.
|
||||||
|
The processor resource controls are mutually
|
||||||
|
exclusive, the order of precedence is CPUCount
|
||||||
|
first, then CPUShares, and CPUPercent last.
|
||||||
--cpu-period int Limit CPU CFS (Completely Fair Scheduler) period
|
--cpu-period int Limit CPU CFS (Completely Fair Scheduler) period
|
||||||
--cpu-quota int Limit CPU CFS (Completely Fair Scheduler) quota
|
--cpu-quota int Limit CPU CFS (Completely Fair Scheduler) quota
|
||||||
-c, --cpu-shares int CPU shares (relative weight)
|
-c, --cpu-shares int CPU shares (relative weight)
|
||||||
|
|
|
@ -15,6 +15,8 @@ docker-create - Create a new container
|
||||||
[**--cap-drop**[=*[]*]]
|
[**--cap-drop**[=*[]*]]
|
||||||
[**--cgroup-parent**[=*CGROUP-PATH*]]
|
[**--cgroup-parent**[=*CGROUP-PATH*]]
|
||||||
[**--cidfile**[=*CIDFILE*]]
|
[**--cidfile**[=*CIDFILE*]]
|
||||||
|
[**--cpu-count**[=*0*]]
|
||||||
|
[**--cpu-percent**[=*0*]]
|
||||||
[**--cpu-period**[=*0*]]
|
[**--cpu-period**[=*0*]]
|
||||||
[**--cpu-quota**[=*0*]]
|
[**--cpu-quota**[=*0*]]
|
||||||
[**--cpu-rt-period**[=*0*]]
|
[**--cpu-rt-period**[=*0*]]
|
||||||
|
@ -124,6 +126,18 @@ The initial status of the container created with **docker create** is 'created'.
|
||||||
**--cidfile**=""
|
**--cidfile**=""
|
||||||
Write the container ID to the file
|
Write the container ID to the file
|
||||||
|
|
||||||
|
**--cpu-count**=*0*
|
||||||
|
Limit the number of CPUs available for execution by the container.
|
||||||
|
|
||||||
|
On Windows Server containers, this is approximated as a percentage of total CPU usage.
|
||||||
|
|
||||||
|
On Windows Server containers, the processor resource controls are mutually exclusive, the order of precedence is CPUCount first, then CPUShares, and CPUPercent last.
|
||||||
|
|
||||||
|
**--cpu-percent**=*0*
|
||||||
|
Limit the percentage of CPU available for execution by a container running on a Windows daemon.
|
||||||
|
|
||||||
|
On Windows Server containers, the processor resource controls are mutually exclusive, the order of precedence is CPUCount first, then CPUShares, and CPUPercent last.
|
||||||
|
|
||||||
**--cpu-period**=*0*
|
**--cpu-period**=*0*
|
||||||
Limit the CPU CFS (Completely Fair Scheduler) period
|
Limit the CPU CFS (Completely Fair Scheduler) period
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,8 @@ docker-run - Run a command in a new container
|
||||||
[**--cap-drop**[=*[]*]]
|
[**--cap-drop**[=*[]*]]
|
||||||
[**--cgroup-parent**[=*CGROUP-PATH*]]
|
[**--cgroup-parent**[=*CGROUP-PATH*]]
|
||||||
[**--cidfile**[=*CIDFILE*]]
|
[**--cidfile**[=*CIDFILE*]]
|
||||||
|
[**--cpu-count**[=*0*]]
|
||||||
|
[**--cpu-percent**[=*0*]]
|
||||||
[**--cpu-period**[=*0*]]
|
[**--cpu-period**[=*0*]]
|
||||||
[**--cpu-quota**[=*0*]]
|
[**--cpu-quota**[=*0*]]
|
||||||
[**--cpu-rt-period**[=*0*]]
|
[**--cpu-rt-period**[=*0*]]
|
||||||
|
@ -174,6 +176,18 @@ division of CPU shares:
|
||||||
**--cidfile**=""
|
**--cidfile**=""
|
||||||
Write the container ID to the file
|
Write the container ID to the file
|
||||||
|
|
||||||
|
**--cpu-count**=*0*
|
||||||
|
Limit the number of CPUs available for execution by the container.
|
||||||
|
|
||||||
|
On Windows Server containers, this is approximated as a percentage of total CPU usage.
|
||||||
|
|
||||||
|
On Windows Server containers, the processor resource controls are mutually exclusive, the order of precedence is CPUCount first, then CPUShares, and CPUPercent last.
|
||||||
|
|
||||||
|
**--cpu-percent**=*0*
|
||||||
|
Limit the percentage of CPU available for execution by a container running on a Windows daemon.
|
||||||
|
|
||||||
|
On Windows Server containers, the processor resource controls are mutually exclusive, the order of precedence is CPUCount first, then CPUShares, and CPUPercent last.
|
||||||
|
|
||||||
**--cpu-period**=*0*
|
**--cpu-period**=*0*
|
||||||
Limit the CPU CFS (Completely Fair Scheduler) period
|
Limit the CPU CFS (Completely Fair Scheduler) period
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue