-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker 18.6.1 + Swarm - ghost network #424
Comments
By externalising the network creation on cli side and having only an external network referenced in the docker-compose file, it works again as expected. I create the network only once, attach traefik to it and period. |
Modified my deployment script as follow:
|
This was referenced Aug 30, 2018
Close in favor of the one in swarmkit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Expected behavior
Hello, I have a weird behaviour since upgrading from docker 18.3.1 to 18.6.1 and traefik 1.6.4 to 1.6.6 :
• I deploy docker stacks by creating a given network per stack and connecting traefik to this stacks (via
docker service update --network-add <network> <traefik>
) - so far it works well• when I deploy a new version of the stack, I remove traefik from the network (
docker service update --network-rm <network> <traefik>
) and destroy the stack (docker stack rm ...
) and create a new one and add traefik back to the networkActual behavior
When I redeploy the stack, I do:
but output is now:
• But since the upgrade, the network is not well destroyed as traefik seems still in the network (via
docker inspect network <network>
)I need to do
docker stack rm traefik
so that the ghost network vanish as expected and then redeploy traefik from scracth and reconnect it to other instances. Any idea on this ?I’m trying to downgrade back to 1.6.4 to see if it’s more from docker side or traefik side... => results are the same with 1.6.4
I also noticed that for the stacks I deploy so far I did not set the overlay network as attachable - did not require it for the last 6 months - shoud I add it ? =>result is the same with attachable network.
Steps to reproduce the behavior
Output of
docker version
:Output of
docker info
:4 VMswith each 8vCPU / 64 Go RAM
The text was updated successfully, but these errors were encountered: