Error: No such container:path:

I am getting “Error: No such container:path:” while trying to move a CSV file to the container in docker. This is the first step to move file to docker & after that file will be imported using cbimport. I am using Windows 10 pro. Below is my command:

docker cp 1500000_Sales_Records.csv country-gdp:/tmp
Error: No such container:path: country-gdp:\

a bucket with the name “country-gdp” is already available on the server.

Thanks in advance…!

It wants the name of the container you’re trying to use, this is a docker command and not Couchbase Server so buckets mean nothing to it.
docker ps will give you your names, have a look at the docs or run docker cp --help

Thanks for your prompt reply. I will check this.