I have two worker nodes: worker1 and worker2 and one swarm manager. I\'m running all the services in the worker nodes only. I need to run from the manager docker exec to acc
If this helps, nowadays you can create the overlay network with --attachable flag to enable any container to join the network. This is great feature as it allows a lot of flexibility.
E.g.
$ docker network create --attachable --driver overlay my-network
$ docker service create --network my-network --name web --publish 80:80 nginx
$ docker run --network=my-network -ti alpine sh
$ wget -qO- web
....