You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently, the docker.network can return misleading error messages. if there is any scenario where creating a network results in the docker api returning a 409 (conflict) status, it will report that the network could not be created because it already exists. However, this is not always the actual reason for the error. For example, if you attempt to create a network that has overlapping ip addresses with an existing network, you will see the error "network already exists" instead of "networks have overlapping IPv4". This is due to an issue in the underlying docker api client library: fsouza/go-dockerclient#605
When the underlying issue is fixed, we can update the dependency and the correct error message should be returned.
The text was updated successfully, but these errors were encountered:
currently, the docker.network can return misleading error messages. if there is any scenario where creating a network results in the docker api returning a 409 (conflict) status, it will report that the network could not be created because it already exists. However, this is not always the actual reason for the error. For example, if you attempt to create a network that has overlapping ip addresses with an existing network, you will see the error "network already exists" instead of "networks have overlapping IPv4". This is due to an issue in the underlying docker api client library: fsouza/go-dockerclient#605
When the underlying issue is fixed, we can update the dependency and the correct error message should be returned.
The text was updated successfully, but these errors were encountered: