forked from cybrespace/mastodon
		
	Specify middleware versions in docker-compose.yml (#5247)
PostgreSQL10 has been released, but upgrading from older versions needs dump/restore. If you pull new version without those handling, db service will fail to launch. To prevent accidentally upgrading, and as a recommended version, this patch specifies PostgreSQL and Redis version.
This commit is contained in:
		
							parent
							
								
									6f2d88dd28
								
							
						
					
					
						commit
						c75ca0525b
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -3,14 +3,14 @@ services:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  db:
 | 
					  db:
 | 
				
			||||||
    restart: always
 | 
					    restart: always
 | 
				
			||||||
    image: postgres:alpine
 | 
					    image: postgres:9.6-alpine
 | 
				
			||||||
### Uncomment to enable DB persistance
 | 
					### Uncomment to enable DB persistance
 | 
				
			||||||
#    volumes:
 | 
					#    volumes:
 | 
				
			||||||
#      - ./postgres:/var/lib/postgresql/data
 | 
					#      - ./postgres:/var/lib/postgresql/data
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  redis:
 | 
					  redis:
 | 
				
			||||||
    restart: always
 | 
					    restart: always
 | 
				
			||||||
    image: redis:alpine
 | 
					    image: redis:4.0-alpine
 | 
				
			||||||
### Uncomment to enable REDIS persistance
 | 
					### Uncomment to enable REDIS persistance
 | 
				
			||||||
#    volumes:
 | 
					#    volumes:
 | 
				
			||||||
#      - ./redis:/data
 | 
					#      - ./redis:/data
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue