Home > OS >  exporting docker container can not be performed
exporting docker container can not be performed

Time:02-01

I'm working with several docker container and needed to export one . I assumed docker export is a way to migrate container. as i am running this command as

docker export {container-name}

I'm getting this error

cowardly refusing to save to a terminal. Use the -o flag or redirect

CodePudding user response:

You should use -o flag as it says in your error:

docker export {container name} -o filename
  •  Tags:  
  • Related