mirror of https://github.com/docker/cli.git
Merge pull request #4797 from dvdksn/daemon-builder-config
docs: add "builder" key to full daemon.json example
This commit is contained in:
commit
33b00e5185
|
@ -983,6 +983,17 @@ The following is a full example of the allowed configuration options on Linux:
|
||||||
"authorization-plugins": [],
|
"authorization-plugins": [],
|
||||||
"bip": "",
|
"bip": "",
|
||||||
"bridge": "",
|
"bridge": "",
|
||||||
|
"builder": {
|
||||||
|
"gc": {
|
||||||
|
"enabled": true,
|
||||||
|
"defaultKeepStorage": "10GB",
|
||||||
|
"policy": [
|
||||||
|
{ "keepStorage": "10GB", "filter": ["unused-for=2200h"] },
|
||||||
|
{ "keepStorage": "50GB", "filter": ["unused-for=3300h"] },
|
||||||
|
{ "keepStorage": "100GB", "all": true }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
"cgroup-parent": "",
|
"cgroup-parent": "",
|
||||||
"containerd": "/run/containerd/containerd.sock",
|
"containerd": "/run/containerd/containerd.sock",
|
||||||
"containerd-namespace": "docker",
|
"containerd-namespace": "docker",
|
||||||
|
|
Loading…
Reference in New Issue