How to setup docker storage in NFS

I am new on docker and currently working on configuring docker. Now I am able to start docker as tcp socket, and use -g to specify image storage(because /var/lib/docker space is too small).

My question is how can I setup image storage within NFS folder. e.g

-g /mnt/data/NFS(root has no permission to write)/myOwnedFolder(have access)

since the NFS is network shared so I am not able to configure like that(will get (code=exited, status=1/FAILURE)), but this NFS is our mounted extra directory so everything will be stored in here.

Is there a way to achieve that I am working on ubuntu 16?

Any help appreciated!