Change docker-compose YAML files to use PostgreSQL version 12 image for "postgres" and "hybrid" types of database setup

This commit is contained in:
trikimiki 2020-12-10 14:43:11 +02:00
parent 24ccd2a2b5
commit e3fadc8d8c
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ version: '2.2'
services: services:
postgres: postgres:
restart: always restart: always
image: "postgres:11.6" image: "postgres:12"
ports: ports:
- "5432" - "5432"
environment: environment:

View File

@ -19,7 +19,7 @@ version: '2.2'
services: services:
postgres: postgres:
restart: always restart: always
image: "postgres:11.6" image: "postgres:12"
ports: ports:
- "5432" - "5432"
environment: environment: