postgres 9.5 has arrived

This commit is contained in:
Jay 2016-01-06 09:58:18 +01:00
parent a5abee4150
commit 8f03fc443b
3 changed files with 7 additions and 3 deletions

View File

@ -2,6 +2,10 @@
All enhancements and patches to cookiecutter-django will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [2015-1-6]
### Changed
- Use Postgres 9.5 on docker (@jayfk)
## [2015-1-4]
### Added
- Add Tether.js because [is needed](http://v4-alpha.getbootstrap.com/components/tooltips/#overview) for proper positioning of Bootstrap tooltips (@EricZaporzan)

View File

@ -1,5 +1,5 @@
postgres:
image: postgres
image: postgres:9.5
volumes:
# If you are using boot2docker, postgres data has to live in the VM for now until #581 is fixed
# for more info see here: https://github.com/boot2docker/boot2docker/issues/581

View File

@ -1,5 +1,5 @@
postgres:
image: postgres:9.4
image: postgres:9.5
volumes:
- /data/{{cookiecutter.repo_name}}/postgres:/var/lib/postgresql/data
env_file: .env
@ -40,4 +40,4 @@ celerybeat:
- postgres
- redis
command: celery -A {{cookiecutter.repo_name}}.taskapp beat -l INFO
{% endif %}
{% endif %}