Hello @Satyam Chauhan ,
As seen in the link @chbeier provided, you have to both add a binding to the container create options and provide filesystem access to the host folder.
The module is sandboxed. It only sees a local folder structure (inside the module). You need to add a folder to the module which maps to a folder on the host filesystem.
Check out the filesystem folders inside the container with:
sudo docker exec -i -t echo /bin/bash
See also this blob post with an example.