You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
452 B

  1. version: "3.2"
  2. services:
  3. rabbitmq3:
  4. container_name: "rabbitmq"
  5. image: rabbitmq:3.8-management-alpine
  6. environment:
  7. - RABBITMQ_DEFAULT_USER=rabbit
  8. - RABBITMQ_DEFAULT_PASS=1234
  9. ports:
  10. - '5672:5672' # AMQP protocol port
  11. - '15672:15672' # HTTP management UI
  12. volumes:
  13. - ./rabbitmq/data/:/var/lib/rabbitmq/
  14. - ./rabbitmq/log/:/var/log/rabbitmq