Docker-compose running on Windows says network configuration changed

I have docker-compose version 1.11.2 on Windows and using version 2.1 of docker-compose.yml, but whenever I try to run something like docker-compose upor docker-compose runnext time, I get an error message on the network that needs to be updated. as the configuration options have changed (even if I didn’t change anything). I can docker network rmremove the network, but from other documentation and docker-linking messages on Linux this seems unnecessary.

I can reproduce this reliably, but I cannot find any additional information. Can anyone explain why I keep getting errors to recreate the network (using the transparent driver to load some things when creating the image, but even using the nat driver gives me a similar error) or at least how to get around it? One of my scenarios is the ability to use docker-compose runin one of the services a couple of times on the same computer as part of the cloud build / test.

+4
source share
1 answer

It turns out this was a bug and fixed in a subsequent update a few weeks ago. One of the Docker developers told me that an update is required for the Windows 10 Creators Update.

0

Source: https://habr.com/ru/post/1676282/


All Articles