You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -209,6 +209,30 @@ Enables debug mode, which outputs the full Docker commands that will be run on t
209
209
210
210
Default: `false`
211
211
212
+
### `device-read-bps` (optional, array)
213
+
214
+
Limit read rate from a device (format: `<device-path>:<number>[<unit>]`). Number is a positive integer. Unit can be one of `kb`, `mb`, or `gb`.
215
+
216
+
Example: `["/dev/sda1:200mb"]`
217
+
218
+
### `device-read-iops` (optional, array)
219
+
220
+
Limit read rate (IO per second) from a device (format: `<device-path>:<number>`). Number is a positive integer.
221
+
222
+
Example: `["/dev/sda1:400"]`
223
+
224
+
### `device-write-bps` (optional, array)
225
+
226
+
Limit write rate to a device (format: `<device-path>:<number>[<unit>]`). Number is a positive integer. Unit can be one of `kb`, `mb`, or `gb`.
227
+
228
+
Example: `["/dev/sda1:200mb"]`
229
+
230
+
### `device-write-iops` (optional, array)
231
+
232
+
Limit write rate (IO per second) to a device (format: `<device-path>:<number>`). Number is a positive integer.
233
+
234
+
Example: `["/dev/sda1:400"]`
235
+
212
236
### `entrypoint` (optional, string)
213
237
214
238
Override the image’s default entrypoint, and defaults the `shell` option to `false`. See the [docker run --entrypoint documentation](https://docs.docker.com/engine/reference/run/#entrypoint-default-command-to-execute-at-runtime) for more details. Set it to `""` (empty string) to disable the default entrypoint for the image, but note that you may need to use this plugin's `command` option instead of the top-level `command` option or set a `shell` instead (depending on the command you want/need to run - see [Issue 138](https://github.com/buildkite-plugins/docker-buildkite-plugin/issues/138) for more information).
0 commit comments