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
In docker compose, the external.name service configuration has been deprecated. If a compose file contains the legacy syntax, i.e.:
networks:
default:
external:
name: <network name>
a warning message is seen advising the user the feature is deprecated, but no guidance is provided on what the new syntax should be. A user may attempt to simply delete the external line from the compose file, but this does not work for all services. An example of a service that breaks is authentik.
The original warning text is: WARN[0000] network default: network.external.name is deprecated in favor of network.name . I propose the warning message text be updated to advise the user to include external: true in the network stanza to avoid compatibility issues.
The proposed warning message might say: WARN[0000] network default: network.external.name is deprecated. If an external network needs to be defined, use "external: true" in the network stanza
The text was updated successfully, but these errors were encountered:
Description
In docker compose, the external.name service configuration has been deprecated. If a compose file contains the legacy syntax, i.e.:
a warning message is seen advising the user the feature is deprecated, but no guidance is provided on what the new syntax should be. A user may attempt to simply delete the
external
line from the compose file, but this does not work for all services. An example of a service that breaks is authentik.The original warning text is:
WARN[0000] network default: network.external.name is deprecated in favor of network.name
. I propose the warning message text be updated to advise the user to includeexternal: true
in the network stanza to avoid compatibility issues.The proposed warning message might say:
WARN[0000] network default: network.external.name is deprecated. If an external network needs to be defined, use "external: true" in the network stanza
The text was updated successfully, but these errors were encountered: