31 lines
		
	
	
		
			548 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			548 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: "3.4"
 | 
						|
 | 
						|
 | 
						|
services:
 | 
						|
  queues:
 | 
						|
    image: mathwave/sprint-repo:queues
 | 
						|
    networks:
 | 
						|
      - queues
 | 
						|
      - monitoring
 | 
						|
      - mongo
 | 
						|
    environment:
 | 
						|
      MONGO_PASSWORD: $MONGO_PASSWORD_PROD
 | 
						|
      STAGE: "production"
 | 
						|
    deploy:
 | 
						|
      mode: replicated
 | 
						|
      restart_policy:
 | 
						|
        condition: any
 | 
						|
      placement:
 | 
						|
        constraints: [node.labels.stage == production]
 | 
						|
      update_config:
 | 
						|
        parallelism: 1
 | 
						|
        order: start-first
 | 
						|
 | 
						|
networks:
 | 
						|
  queues:
 | 
						|
    external: true
 | 
						|
  monitoring:
 | 
						|
    external: true
 | 
						|
  mongo:
 | 
						|
    external: true
 |