Docker - accessing files inside container from hos

2019-07-29 17:50发布

I am new to docker.

I ran a node-10 images and inside the running container I cloned a repository, ran the app which started a server with file watcher. I need to access the codebase inside the container, open it up in an IDE running on the windows host. If that is done, then I also want that as I change the files in the IDE these changes induce the filewatcher in the container.

Any help is appreciated. Thanks,

3条回答
甜甜的少女心
2楼-- · 2019-07-29 18:33

It depends on what you want to do with the files.

There is the docker cp command that you can use to copy files to/from a container.

However, it sounds to me like you are using docker for development, so you should mount a volume instead, that is, you mount a directory on the host as a volume in docker, so anything written to that directory will show up in the container, and vice versa.

For instance if you have the code base that you develop against in C:\src on your windows machine, then you run docker like docker run -v c:\src:/app where /app is the location that node is looking in. However, for Windows there are a few things to consider since Docker is not native in Windows, so have a look at the documentation first.

查看更多
干净又极端
3楼-- · 2019-07-29 18:38

The concept you are looking for is called volumes. You need to start a container and mount a host directory inside it. For the container, it will be a regular folder, and it will create files in it. For you, it will also be a regular folder. Changes made by either side will be visible to another.

docker run -v /a/local/dir:/a/dir/in/your/container

Note though that you can run into permission issues that you will need to figure out separately.

查看更多
手持菜刀,她持情操
4楼-- · 2019-07-29 18:51

Hi I think you should use mount volumes for the source code and edit your code from your IDE normally:

docker run -it -v "$PWD":/app -w /app -u node node:10 yarn dev

here docker will create an image setting the working dir to "/app", mount the current dir to "/app" and run "yarn dev" at start up with the "node" user (none root user)

Hope this is helpfull.

查看更多
登录 后发表回答