When launching services using stack deploy we get the following error:
"Error response from daemon: rpc error: code = 3 desc = EndpointSpec: port published with ingress mode can't be used with dnsrr mode"
Testing has led me to try:
manually creating a network with ignress=false
set, launching the stack deploy without exposing ports and joining the nodes to the network, then manually exposing ports.
docker service update --publish-add 5672:5672 service_name1
but still get the same error.
any thoughts?
For services with endpoint-mode set to dnsrr ports can't be published with the default mode which is 'ingress'. Changing the publish mode to host should work.
In compose file it would be like,