aboutsummaryrefslogtreecommitdiff
path: root/docker-compose-pg.yml
Commit message (Collapse)AuthorAge
* docker: Specify GID for docker-compose-pg.yml tooDaniel Axtens2019-10-29
| | | | | | | | We just need to mirror the changes in the MySQL/default docker-compose.yml file. Fixes: b4f4c8554c11 ("docker: Require GID also") Signed-off-by: Daniel Axtens <dja@axtens.net>
* docker-compose: Re-add 'PGPASSWORD' to correct sectionStephen Finucane2018-05-03
| | | | | | | | | This was moved in commit '1590c21d' but should not have been. Restore it to its rightful place. Signed-off-by: Stephen Finucane <stephen@that.guru> Fixes: 1590c21d ("docker-compose: Remove 'links' section") Tested-by: Daniel Axtens <dja@axtens.net>
* docker: Add 'depends_on'Stephen Finucane2018-04-26
| | | | | | | We need this for the PostgreSQL variant too. Signed-off-by: Stephen Finucane <stephen@that.guru> Fixes: 1590c21d ("docker-compose: Remove 'links' section")
* docker-compose: Remove 'links' sectionStephen Finucane2018-04-26
| | | | | | | | | This is no longer needed as the service name is also the host names in v2 syntax [1]. [1] https://docs.docker.com/compose/networking/ Signed-off-by: Stephen Finucane <stephen@that.guru>
* docker-compose: Switch to 3.0 syntaxStephen Finucane2018-04-26
| | | | | | | | | | | Ubuntu 18.04 (Bionic Beaver) providers 'docker-compose' 1.17.1 [1] at release which supports the 3.0 syntax [2]. Using this allows some users (me) to resolve a long standing issue caused by a UID that's not 1000. [1] https://packages.ubuntu.com/bionic/docker-compose [2] https://docs.docker.com/compose/compose-file/ Signed-off-by: Stephen Finucane <stephen@that.guru>
* postgres: Fix version to 9.6Daniel Axtens2017-12-03
| | | | | | | | | | | 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>
* Support testing with PostgreSQLDaniel Axtens2017-10-28
This allows us to easily test against PostgreSQL using the same tooling we normally use. This is helpful in (for example) shaking out the test failures that were observed on ozlabs.org To use it: docker-compose -f docker-compose-pg.yml <usual argument> (You may find in necessary to do a 'docker-compose down' first, depending on what state the system is in and what command you're running.) Signed-off-by: Daniel Axtens <dja@axtens.net> Reviewed-by: Stephen Finucane <stephen@that.guru>