Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit f0e27e5

Browse files
Merge component 'cli' from git@github.com:docker/cli 19.03
2 parents 5321005 + 65550b7 commit f0e27e5

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

components/cli/cli/command/builder/prune.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ func NewPruneCommand(dockerCli command.Cli) *cobra.Command {
4444

4545
flags := cmd.Flags()
4646
flags.BoolVarP(&options.force, "force", "f", false, "Do not prompt for confirmation")
47-
flags.BoolVarP(&options.all, "all", "a", false, "Remove all unused images, not just dangling ones")
48-
flags.Var(&options.filter, "filter", "Provide filter values (e.g. 'unused-for=24h')")
47+
flags.BoolVarP(&options.all, "all", "a", false, "Remove all unused build cache, not just dangling ones")
48+
flags.Var(&options.filter, "filter", "Provide filter values (e.g. 'until=24h')")
4949
flags.Var(&options.keepStorage, "keep-storage", "Amount of disk space to keep for cache")
5050

5151
return cmd

components/cli/docs/reference/commandline/dockerd.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
title: "dockerd"
3-
aliases: ["/engine/reference/commandline/daemon/"]
43
description: "The daemon command description and usage"
54
keywords: "container, daemon, runtime"
5+
redirect_from:
6+
- /engine/reference/commandline/daemon/
67
---
78

89
<!-- This file is maintained within the docker/cli GitHub

0 commit comments

Comments
 (0)