-
Notifications
You must be signed in to change notification settings - Fork 60
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
Remove deprecated gateway external name #186
Conversation
Can we get testing instructions to reproduce the issue and then demonstrate the fix? Thanks. |
@seth-shaw-unlv Just run |
Just noticed another ticket has the warning within the output example. Although his ticket is referencing a composer version issue, it does show the warning messages I posted here. Not completely related but it shows the issue arises when the build process is fired (make local|demo). |
Looks like the format has changed so we should, set
Our current method was deprecated in It looks like |
Looks like we don't need to specify name either if it matches the same as the network configuration. docker network ls Sun 17 Oct 2021 12:54:49 UTC
NETWORK ID NAME DRIVER SCOPE
eb0abd23fac3 bridge bridge local
1df64990806d host host local
4943545796cd isle-buildkit bridge local
225f8df1f00d isle-dc_default bridge local
85f08ed21a62 isle-dc_gateway bridge local
e540e0060f15 none null local So the following would be fine. gateway:
external: true Here we can see that Alpaca is only on the default internal network as is expected and Drupal is on both. docker inspect isle-dc_alpaca_1 | jq '.[].NetworkSettings.Networks | keys[]'
"isle-dc_default" docker inspect isle-dc_drupal_1 | jq '.[].NetworkSettings.Networks | keys[]'
"isle-dc_default"
"isle-dc_gateway |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've made the changes I've recommend and tested it locally see the previous comment for the output.
@DonRichards if you're happy with my changes I'll go ahead and merge it. |
Fix warnings