Created
          December 22, 2021 03:48 
        
      - 
      
- 
        Save HRKings/3d6ff5fb2aa3e6f8cf0f4d84a9679a69 to your computer and use it in GitHub Desktop. 
    RabbitMQ Template Docker Compose File
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | version: "3.9" | |
| services: | |
| rabbitmq: | |
| container_name: rabbitmq | |
| image: rabbitmq:management-alpine | |
| environment: | |
| RABBITMQ_DEFAULT_USER: ${RABBITMQ_USER:-rabbit} | |
| RABBITMQ_DEFAULT_PASS: ${RABBITMQ_PASSWORD:-password} | |
| ports: | |
| - "5672:5672" | |
| - "15672:15672" | |
| restart: unless-stopped | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment