Browse Source

Merge branch 'main' into feature/improve-sidebar

pull/2343/head
Thomas Kaul 2 years ago
committed by GitHub
parent
commit
2e0cb18eea
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 2
      docker/docker-compose.build.yml
  3. 2
      docker/docker-compose.dev.yml
  4. 2
      docker/docker-compose.yml

1
CHANGELOG.md

@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Improved the style of the system message
- Upgraded _Postgres_ from version `12` to `15` in the `docker-compose` files
## 2.1.0 - 2023-09-15

2
docker/docker-compose.build.yml

@ -17,7 +17,7 @@ services:
redis:
condition: service_healthy
postgres:
image: postgres:12
image: postgres:15
env_file:
- ../.env
healthcheck:

2
docker/docker-compose.dev.yml

@ -1,7 +1,7 @@
version: '3.9'
services:
postgres:
image: postgres:12
image: postgres:15
container_name: postgres
restart: unless-stopped
env_file:

2
docker/docker-compose.yml

@ -17,7 +17,7 @@ services:
redis:
condition: service_healthy
postgres:
image: postgres:12
image: postgres:15
env_file:
- ../.env
healthcheck:

Loading…
Cancel
Save