Skip to content

Commit 0ecdef1

Browse files
committed
Run dev environment on "slightly" newer PostgreSQL
While the current version of NAV may require no newer PostgreSQL syntax than 9.6, that version is hopelessly outdated (and newer Django versions we are considering moving to will not support PostgreSQLs this old). We also run mostly version 13 in production, and without this change, dumping and loading data from an actual production server just becomes that much harder (dump from PostgreSQL 13 don't seem to be compatible with 9.6).
1 parent 5c5c202 commit 0ecdef1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ services:
7777
restart: on-failure:5
7878

7979
postgres:
80-
image: "postgres:9.6"
80+
image: "postgres:13"
8181
environment:
8282
- POSTGRES_HOST_AUTH_METHOD=trust
8383
restart: on-failure:5

0 commit comments

Comments
 (0)