summaryrefslogtreecommitdiff
path: root/docker-compose-pg.yml
diff options
context:
space:
mode:
authorDaniel Axtens <dja@axtens.net>2017-11-24 10:54:27 +1100
committerStephen Finucane <stephen@that.guru>2017-12-03 21:41:03 +0000
commit8ac8e7a618e0c94a7d2c9aacb3c005949b3cb694 (patch)
tree1c6ce6847dd900b0840c4d60fe53b4ac116e3137 /docker-compose-pg.yml
parentf880464ad9c8f243804474922859f83109599bf3 (diff)
downloadpatchwork-8ac8e7a618e0c94a7d2c9aacb3c005949b3cb694.tar
patchwork-8ac8e7a618e0c94a7d2c9aacb3c005949b3cb694.tar.gz
postgres: Fix version to 9.6
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@axtens.net> Reviewed-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'docker-compose-pg.yml')
-rw-r--r--docker-compose-pg.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker-compose-pg.yml b/docker-compose-pg.yml
index 31ef843..81dde3e 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: