Why does this docker run command have 2x -p commands?
docker run -it --rm --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.10-management
According to docker run --help, -p "Publishes a container's port(s) to a the host". Does that mean there are 2 ports exposed?
Opening the container from docker desktop in a browser, it opens in http://localhost:15672/.
Attempting to navigate to http://localhost:5672/ shows a sad chrome tab and the below in the console.
Is that port 5672 maybe used for something else besides a browser?

