Skip to content

Commit

Permalink
Merge pull request docker#1314 from AntaresS/update-docs
Browse files Browse the repository at this point in the history
update docs with currently supported features options

Signed-off-by: nashasha1 <[email protected]>
  • Loading branch information
thaJeztah authored and nashasha1 committed Sep 7, 2018
2 parents 9ad19d2 + d656706 commit a7268dd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions docs/reference/commandline/dockerd.md
Original file line number Diff line number Diff line change
Expand Up @@ -1424,6 +1424,16 @@ This is a full example of the allowed configuration options on Windows:
}
```

#### Feature options
The optional field `features` in `daemon.json` allows users to enable or disable specific
daemon features. For example, `{"features":{"buildkit": true}}` enables `buildkit` as the
default docker image builder.

The list of currently supported feature options:
- `buildkit`: It enables `buildkit` as default builder when set to `true` or disables it by
`false`. Note that if this option is not explicitly set in the daemon config file, then it
is up to the cli to determine which builder to invoke.

#### Configuration reload behavior

Some options can be reconfigured when the daemon is running without requiring
Expand Down
2 changes: 1 addition & 1 deletion e2e/stack/remove_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func deployFullStack(t *testing.T, orchestrator, stackname string) {
}

func cleanupFullStack(t *testing.T, orchestrator, stackname string) {
// FIXME(vdemeester) we shouldn't have to do that. it is hidding a race on docker stack rm
// FIXME(vdemeester) we shouldn't have to do that. it is hiding a race on docker stack rm
poll.WaitOn(t, stackRm(orchestrator, stackname), pollSettings)
poll.WaitOn(t, taskCount(orchestrator, stackname, 0), pollSettings)
}
Expand Down

0 comments on commit a7268dd

Please sign in to comment.