公告
财富商城
积分规则
提问
发文
2019-08-03 17:54发布
成全新的幸福
I need to access the file system of a non-running docker's container. What is the best way to accomplish that?
Thanks,
The docker export command is what you are after. It will print on the standard output the content of a container filesystem as a tar archive.
docker export
docker export <container_name> > my_container.tar
or
docker export --output="my_container.tar" <container_name>
最多设置5个标签!
The
docker export
command is what you are after. It will print on the standard output the content of a container filesystem as a tar archive.or