- Moved jgroups, rabbitmq, spring-amqp, spring-apache-camel, spring-jms to messaging-modules - Moved twilio, twitter4j, strip to saas-modules - Renamed existing saas to jira-rest-integration
		
			
				
	
	
		
			15 lines
		
	
	
		
			349 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			349 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: '3.0'
 | |
| services:
 | |
|   rabbitmq:
 | |
|     image: rabbitmq:3-management
 | |
|     environment:
 | |
|       - RABBITMQ_DEFAULT_USER=guest
 | |
|       - RABBITMQ_DEFAULT_PASS=guest
 | |
|       - RABBITMQ_VM_MEMORY_HIGH_WATERMARK_RELATIVE=0.8
 | |
|     ports:
 | |
|       - "5672:5672"
 | |
|       - "15672:15672"
 | |
|     volumes:
 | |
|       - ./src/rabbitmq/20-mem.conf:/etc/rabbitmq/conf.d/20-mem.conf
 | |
| 
 |