[PATCH] postgres: Fix version to 9.6

Daniel Axtens dja at axtens.net
Fri Nov 24 10:54:27 AEDT 2017


Always version your dependencies, people.

Postgres 10 has been released, the data format is not backwards
compatible with Postgres 9.6. I don't think too many people have
moved to 10 yet, so test with 9.6 for now.

Signed-off-by: Daniel Axtens <dja at axtens.net>
---
 docker-compose-pg.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker-compose-pg.yml b/docker-compose-pg.yml
index 31ef8439222c..81dde3e534ca 100644
--- a/docker-compose-pg.yml
+++ b/docker-compose-pg.yml
@@ -5,7 +5,7 @@
 # or upgrade to v2 and use the build-arg to override it.
 
 db:
-  image: postgres
+  image: postgres:9.6
   environment:
     - POSTGRES_PASSWORD=password
   volumes:
-- 
2.11.0



More information about the Patchwork mailing list