How to mount volume inside child docker created by parent docker sharing docker.sock

我与影子孤独终老i 提交于 2020-12-15 06:40:18

问题


I am trying to create a wrapper container to build and run a set of containers using a docker-compose I cannot modify. The docker-compose mounts several volumes, but when starting the docker-compose from inside of the wrapper docker, the volumes are still mounted from the host since the docker .sock is volume mounted to be the host's docker.sock.

I would like to not have to use full docker-in-docker due to all the problems associated with it outlined in jpetazzo's article.

I would also like to avoid volume-from since I cannot edit the docker-compose file mentioned previously.

Is there a way to get this snippet to correctly use the parent docker's file instead of going to the host filesystem and mounting it from there?

FROM docker:latest

RUN mkdir -p /tmp/parent/ && echo "This is from the parent docker" > /tmp/parent/parent.txt
CMD docker run -v /tmp/parent/parent.txt:/root/parent.txt --rm ubuntu:18.04 bash -c "cat /root/parent.txt"

when run with a command akin to this:

docker build -t parent . && docker run --rm -v /var/run/docker.sock:/var/run/docker.sock parent

回答1:


Make your paths the same on the host and inside of the docker image, e.g.

docker run -v /var/run/docker.sock:/var/run/docker.sock \
  -v /home/user:/home/user -w /home/user/project parent_image ...

By mounting the volume as /home/user in the same location inside the image, a command like docker-compose up with relative bind mounts will use the container path names when talking to the docker socket, which will match the paths on the host.



来源:https://stackoverflow.com/questions/54155816/how-to-mount-volume-inside-child-docker-created-by-parent-docker-sharing-docker

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!