Accessing data files in Windows from docker instance

Hi,
I am testing out SingleStore on Docker on Windows(WSL 2)
I want to load date from files in my local Windows file system using LOAD DATA.
eg LOAD DATA INFILE ‘numbers.csv’ INTO TABLE foo COLUMNS TERMINATED BY ‘,’ ;
How do I refer to in this case numbers.csv?
Or how do I set up access to my local Windows file system.
Many thanks.

Check for a way to expose a folder on the enclosing Windows system as a folder visible inside the docker container. Docker should have a way to do that. It does on Mac.

Many thanks.
I finally realized how to do this.