mirror of https://github.com/docker/docs.git
build: BUILDKIT_TTY_LOG_LINES env var
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
parent
b43a97a067
commit
43c8d8a668
|
@ -10,10 +10,11 @@ You can set the following environment variables to enable, disable, or change
|
||||||
the behavior of features related to building:
|
the behavior of features related to building:
|
||||||
|
|
||||||
| Variable | Type | Description |
|
| Variable | Type | Description |
|
||||||
| --------------------------------------------------------------------------- | ----------------- | ---------------------------------------------------- |
|
|-----------------------------------------------------------------------------|-------------------|------------------------------------------------------|
|
||||||
| [BUILDKIT_COLORS](#buildkit_colors) | String | Configure text color for the terminal output. |
|
| [BUILDKIT_COLORS](#buildkit_colors) | String | Configure text color for the terminal output. |
|
||||||
| [BUILDKIT_HOST](#buildkit_host) | String | Specify host to use for remote builders. |
|
| [BUILDKIT_HOST](#buildkit_host) | String | Specify host to use for remote builders. |
|
||||||
| [BUILDKIT_PROGRESS](#buildkit_progress) | String | Configure type of progress output. |
|
| [BUILDKIT_PROGRESS](#buildkit_progress) | String | Configure type of progress output. |
|
||||||
|
| [BUILDKIT_TTY_LOG_LINES](#buildkit_tty_log_lines) | String | Number of log lines (for active steps in tty mode). |
|
||||||
| [BUILDX_BUILDER](#buildx_builder) | String | Specify the builder instance to use. |
|
| [BUILDX_BUILDER](#buildx_builder) | String | Specify the builder instance to use. |
|
||||||
| [BUILDX_CONFIG](#buildx_config) | String | Specify location for configuration, state, and logs. |
|
| [BUILDX_CONFIG](#buildx_config) | String | Specify location for configuration, state, and logs. |
|
||||||
| [BUILDX_EXPERIMENTAL](#buildx_experimental) | Boolean | Turn on experimental features. |
|
| [BUILDX_EXPERIMENTAL](#buildx_experimental) | Boolean | Turn on experimental features. |
|
||||||
|
@ -80,6 +81,15 @@ Usage:
|
||||||
$ export BUILDKIT_PROGRESS=plain
|
$ export BUILDKIT_PROGRESS=plain
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## BUILDKIT_TTY_LOG_LINES
|
||||||
|
|
||||||
|
You can change how many log lines are visible for active steps in tty mode by
|
||||||
|
setting `BUILDKIT_TTY_LOG_LINES` to a number (default to `6`).
|
||||||
|
|
||||||
|
```console
|
||||||
|
$ export BUILDKIT_TTY_LOG_LINES=8
|
||||||
|
```
|
||||||
|
|
||||||
## EXPERIMENTAL_BUILDKIT_SOURCE_POLICY
|
## EXPERIMENTAL_BUILDKIT_SOURCE_POLICY
|
||||||
|
|
||||||
Lets you specify a
|
Lets you specify a
|
||||||
|
|
Loading…
Reference in New Issue