Import docker/docker/cli
Signed-off-by: Daniel Nephin <dnephin@gmail.com>
This commit is contained in:
1
cli/command/volume/testdata/volume-inspect-with-format.json-template.golden
vendored
Normal file
1
cli/command/volume/testdata/volume-inspect-with-format.json-template.golden
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"foo":"bar"}
|
||||
1
cli/command/volume/testdata/volume-inspect-with-format.simple-template.golden
vendored
Normal file
1
cli/command/volume/testdata/volume-inspect-with-format.simple-template.golden
vendored
Normal file
@ -0,0 +1 @@
|
||||
volume
|
||||
22
cli/command/volume/testdata/volume-inspect-without-format.multiple-volume-with-labels.golden
vendored
Normal file
22
cli/command/volume/testdata/volume-inspect-without-format.multiple-volume-with-labels.golden
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
[
|
||||
{
|
||||
"Driver": "local",
|
||||
"Labels": {
|
||||
"foo": "bar"
|
||||
},
|
||||
"Mountpoint": "/data/volume",
|
||||
"Name": "foo",
|
||||
"Options": null,
|
||||
"Scope": "local"
|
||||
},
|
||||
{
|
||||
"Driver": "local",
|
||||
"Labels": {
|
||||
"foo": "bar"
|
||||
},
|
||||
"Mountpoint": "/data/volume",
|
||||
"Name": "bar",
|
||||
"Options": null,
|
||||
"Scope": "local"
|
||||
}
|
||||
]
|
||||
10
cli/command/volume/testdata/volume-inspect-without-format.single-volume.golden
vendored
Normal file
10
cli/command/volume/testdata/volume-inspect-without-format.single-volume.golden
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
[
|
||||
{
|
||||
"Driver": "local",
|
||||
"Labels": null,
|
||||
"Mountpoint": "/data/volume",
|
||||
"Name": "volume",
|
||||
"Options": null,
|
||||
"Scope": "local"
|
||||
}
|
||||
]
|
||||
3
cli/command/volume/testdata/volume-list-with-config-format.golden
vendored
Normal file
3
cli/command/volume/testdata/volume-list-with-config-format.golden
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
baz local foo=bar
|
||||
foo bar
|
||||
volume local
|
||||
3
cli/command/volume/testdata/volume-list-with-format.golden
vendored
Normal file
3
cli/command/volume/testdata/volume-list-with-format.golden
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
baz local foo=bar
|
||||
foo bar
|
||||
volume local
|
||||
4
cli/command/volume/testdata/volume-list-without-format.golden
vendored
Normal file
4
cli/command/volume/testdata/volume-list-without-format.golden
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
DRIVER VOLUME NAME
|
||||
local baz
|
||||
bar foo
|
||||
local volume
|
||||
2
cli/command/volume/testdata/volume-prune-no.golden
vendored
Normal file
2
cli/command/volume/testdata/volume-prune-no.golden
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
WARNING! This will remove all volumes not used by at least one container.
|
||||
Are you sure you want to continue? [y/N] Total reclaimed space: 0B
|
||||
7
cli/command/volume/testdata/volume-prune-yes.golden
vendored
Normal file
7
cli/command/volume/testdata/volume-prune-yes.golden
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
WARNING! This will remove all volumes not used by at least one container.
|
||||
Are you sure you want to continue? [y/N] Deleted Volumes:
|
||||
foo
|
||||
bar
|
||||
baz
|
||||
|
||||
Total reclaimed space: 2kB
|
||||
6
cli/command/volume/testdata/volume-prune.deletedVolumes.golden
vendored
Normal file
6
cli/command/volume/testdata/volume-prune.deletedVolumes.golden
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
Deleted Volumes:
|
||||
foo
|
||||
bar
|
||||
baz
|
||||
|
||||
Total reclaimed space: 2kB
|
||||
1
cli/command/volume/testdata/volume-prune.empty.golden
vendored
Normal file
1
cli/command/volume/testdata/volume-prune.empty.golden
vendored
Normal file
@ -0,0 +1 @@
|
||||
Total reclaimed space: 0B
|
||||
Reference in New Issue
Block a user