DoTheEvo / Traefik-v2-examples

Traefik v2 guide by examples
618 stars 73 forks source link

fix: docker external network declaration #6

Open guillaumemichel opened 8 months ago

guillaumemichel commented 8 months ago

External networks in docker compose should be declared as follow (source):

networks:
  default:
    name: $DEFAULT_NETWORK
    external: true

rather than

networks:
  default:
    external:
      name: $DEFAULT_NETWORK

Current configs trigger the warning:

WARN[0000] network default: network.external.name is deprecated. Please set network.name with external: true