Docker Dind Volume Issue
I’m struggling to build the following setup
I have my Linux virtual machine running on Azure acting as a coder host
And I have the default docker template that you provide
I’m creating an workspace and installing docker inside of it
Inside the workspace I’m cloning my git repo that includes an docker-compose that setups my project using VOLUMES
But when I run the docker compose and I exec inside the containers, the files are actually directories, I spent some hours googling it and it seems that this is related to the docker inside my workspace actually using my host docker sock ( kind weird but I think that’s it ) and because of that docker is not able to really find the git clonned repo to be used as a volume
Do you know how fix this? Or if can I use a different approach?
I really need to use the docker-compose with volumes because because I need to use the hot reload feature to improve my experience
