Here's a quick tester for Swarm Mode that will work everywhere..
$ docker service create --name nginx1 -p 8080:80 --replicas=5 --mount source=/etc/hostname,target=/usr/share/nginx/html/index.html,type=bind nginx
You effectively bind mount the hostname as the index.html page meaning you can see the round-robin / mesh networking in action.