DiUS / pact_broker-docker

'Dockerised' pact broker
http://pact.io
MIT License
76 stars 102 forks source link

Recommended version of PostgreSQL? #38

Closed zharvey-welltok closed 7 years ago

zharvey-welltok commented 7 years ago

Hi, looking at Docker's official PostgreSQL repo I'm seeing a wide variety of supported tags ranging from 9.2. to 9.6..

Just wondering: Is there a recommended version of Postgres that the community has for this Docker image?

bethesque commented 7 years ago

The safest one to use would be the version that travis-ci installs by default, as that's the one that the tests run against. According to their documentation "The Travis CI build environments use version 9.1 by default".

We should possibly look at upgrading that if the docker containers start at 9.2.

bethesque commented 7 years ago

Ok, I tried out travis with 9.6 and it blew up (travis configuration problem, not a code problem) so I tried with 9.5, and it passed, so I'd say that we officially support 9.5. Having said that, I know 9.6 works because that's what I'm running locally ;)

zharvey-welltok commented 7 years ago

Thanks @bethesque ! Appreciate the follow-through!