Fix postgres to version 13 in Docker compose

Helps to make tests reproducible, and avoids accidentally
relying on postgres:11 in which some tests fail.
This commit is contained in:
Arie van Deursen 2022-12-26 14:27:46 +01:00
parent 1c0a3a7829
commit 5d63b48328
No known key found for this signature in database
GPG Key ID: 72D9305D3EBD52B5
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ services:
- static_volume:/app/static
- media_volume:/app/images
db:
image: postgres
image: postgres:13
env_file: .env
volumes:
- pgdata:/var/lib/postgresql/data