0

I want to run a dockerized nginx on port 443 (https), but this seems to be taken by the docker-proxy.

Why is this, and can I do someting about it?

EDIT

The same conflict happens with the http port (80)

blueFast
  • 41,341
  • 63
  • 198
  • 344

1 Answers1

0

docker-proxy is run when you publish a port on the host. Look for the container or service you have run that is publishing the port and remove it:

$ docker container ls
$ docker service ls
BMitch
  • 231,797
  • 42
  • 475
  • 450