查看docker容器ipdocker inspect $CONTAINER_ID | grep -i add...
在docker容器中有时需要复制主机的文件进去,有时又需要将docker容器的文件复制到主机的某目录下。从Docker容器内拷贝文件到主机上docker cp:/file/path/within/container /host/path/target从主机上拷贝文件到容器内参考自:http://stackoverflow.com/questions/22907231/copying-files-from-host-to-docker-container docker cp foo.txt mycontainer:/foo.txt #拷贝到容器
docker cp mycontainer:/foo.txt foo.txt #从容器拷贝到主机1.用-v挂载主机数据卷到容器内docker run -v /path/to/hostdir:/mnt $container在容器内拷贝cp /mnt/sourcefile /path/to/destfile2.直接在主机上拷贝到容...