0

I create and run rabbitMQ-container, using docker-compose:

 version: '3'

 services:

    brocker:
    container_name: rabbit_chat
    image: rabbitmq:3-management
    restart: always
    ports:
       - "15671:15671"

And tried to open it in browser, using http://localhost:15671

But it doesn't work

PS: answers at How to open rabbitmq in browser using docker container? not help me.

Jelly
  • 972
  • 1
  • 17
  • 40

1 Answers1

1

The exposed container port is 15672, not 15671.

DannyB
  • 12,810
  • 5
  • 55
  • 65