How to access docker volume from windows

I am new to docker with docker desktop.
I learned up to the point of creating volumes using docker compose.

My intention is to run multiple instances of ignition for development purpose, along side with git practices. On this note I need to access project folder of the individual ignition instance (is instance even the correct term to use here?)

How do I access the individual project folder from windows explorer?

1 Like

Maybe this helps:

I personally use a linux style terminal running bash so I can use the same commands I'd use on linux. Then it's easy:
docker exec -it {container} bash

Note that IN docker desktop, there's a "Volumes" menu entry which allows you to browse your volumes. Never used that, so I can't say what you can do with it, but it's there.

Yes, Docker Desktop also has a Volumes section. You can browse all files stored in the Stored Data section within that.

Additionally, you can add files to a volume or save files from a Docker volume to your PC.