2

I am new to Docker and found one thing I don't understand: I downloaded the image jwilder/nginx-proxy from the Github repo nginx-proxy/nginx-proxy and ran it with docker-compose up. This will bring on a new network nginxproxy_default, which the new container is connected to, although the docker-compose.yml does not have a network specified. I searched all files in the repository but I didn't find any place where this network is configured, so where does it come from?

Benni
  • 1,023
  • 11
  • 15

1 Answers1

2

It is a default network created automatically by docker-compose. Read more here.

Milan Markovic
  • 1,250
  • 13
  • 18