Sharing a volume from a Global Service to another Replica Service

Is it possible to share a container volume to another in Docker Swarm Mode?

Here is an example that I am trying to achieve,

Service 1 -> docker service create -> replica 100, on 5 nodes
Service 2 -> docker service create --mode global -> hence 1 container per node on all those 5 nodes.

I want Service2 files to be available for Service 1 containers. How do I achieve this?