diff --git a/cmd/finch/nerdctl.go b/cmd/finch/nerdctl.go index 3242c0b55..86f437bbf 100644 --- a/cmd/finch/nerdctl.go +++ b/cmd/finch/nerdctl.go @@ -129,6 +129,7 @@ var nerdctlCmds = map[string]string{ "compose": "Compose", "container": "Manage containers", "create": "Create a new container", + "cp": "Copy files/folders between a running container and the local filesystem", "events": "Get real time events from the server", "exec": "Run a command in a running container", "history": "Show the history of an image", diff --git a/e2e/e2e_test.go b/e2e/e2e_test.go index 9fe9b1f29..60e5a3e46 100644 --- a/e2e/e2e_test.go +++ b/e2e/e2e_test.go @@ -59,6 +59,7 @@ func TestE2e(t *testing.T) { tests.Run(&tests.RunOption{BaseOpt: o, CGMode: tests.Unified}) tests.Start(o) tests.Stop(o) + tests.Cp(o) tests.Tag(o) tests.Save(o) tests.Load(o)