Browse Source
Update postgres to version 15 in docker-compose files (#1596)
* Update postgres to version 15 in docker-compose files
* Update changelog
---------
Co-authored-by: Thomas <4159106+dtslvr@users.noreply.github.com>
pull/2343/head^2
Leon Stoldt
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
7 additions and
3 deletions
-
CHANGELOG.md
-
docker/docker-compose.build.yml
-
docker/docker-compose.dev.yml
-
docker/docker-compose.yml
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
- Introduced a sidebar navigation on desktop |
|
|
- Introduced a sidebar navigation on desktop |
|
|
|
|
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
- Upgraded _Postgres_ from version `12` to `15` in the `docker-compose` files |
|
|
|
|
|
|
|
|
## 2.1.0 - 2023-09-15 |
|
|
## 2.1.0 - 2023-09-15 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
@ -17,7 +17,7 @@ services: |
|
|
redis: |
|
|
redis: |
|
|
condition: service_healthy |
|
|
condition: service_healthy |
|
|
postgres: |
|
|
postgres: |
|
|
image: postgres:12 |
|
|
image: postgres:15 |
|
|
env_file: |
|
|
env_file: |
|
|
- ../.env |
|
|
- ../.env |
|
|
healthcheck: |
|
|
healthcheck: |
|
|
|
@ -1,7 +1,7 @@ |
|
|
version: '3.9' |
|
|
version: '3.9' |
|
|
services: |
|
|
services: |
|
|
postgres: |
|
|
postgres: |
|
|
image: postgres:12 |
|
|
image: postgres:15 |
|
|
container_name: postgres |
|
|
container_name: postgres |
|
|
restart: unless-stopped |
|
|
restart: unless-stopped |
|
|
env_file: |
|
|
env_file: |
|
|
|
@ -17,7 +17,7 @@ services: |
|
|
redis: |
|
|
redis: |
|
|
condition: service_healthy |
|
|
condition: service_healthy |
|
|
postgres: |
|
|
postgres: |
|
|
image: postgres:12 |
|
|
image: postgres:15 |
|
|
env_file: |
|
|
env_file: |
|
|
- ../.env |
|
|
- ../.env |
|
|
healthcheck: |
|
|
healthcheck: |
|
|