I want to transfer multiple files from ubuntu to a docker container. For single file, the below command works:
docker cp file_name CONTAINER:path/
But I am not able to upload multiple files at once. I have tried following commands, but no success yet:
docker cp {file1,file2} CONTAINER:path/
docker cp [file1,file2] CONTAINER:path/
docker cp ["file1","file2"] CONTAINER:path/
All above commands returns "no such file or directory" error