0

I have a Docker container where I have cloned a project repository. I have Visual Studio Code installed in my Windows 10 OS. Now I can't access the repository as it is inside the container and not in my local machine.

1 Answers1

0

You need to mount the volume on your host system.

You can achieve this within your Dockerfile, with the Docker run command or with Docker-compose

This should answer your question sufficiently.

Quinten Scheppermans
  • 954
  • 1
  • 10
  • 29