How to access file system outside of docker container with Go module

What’s the correct way to access the local file system from a Go module when running nakama from the docker image? I have nakama/data mapped to a volume where are modules are loaded. We’ve added an image folder to nakama/data/. How would I path to that using os.Open?

this is actually working os.Open ./nakama/data/images, we had the path wrong.