Skip to content

Commit

Permalink
stick to postgres 13 for dev db
Browse files Browse the repository at this point in the history
(ili2pg doesn't support scram authentication, which is default
in postgres 14 it seems, see claeis/ili2db#448
for more info)
  • Loading branch information
olivierdalang committed Aug 3, 2022
1 parent cb8bc1c commit 2a4d1d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qgepqwat2ili/utils/various.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def dexec_(cmd, check=True):
logger.info("Test container not running, we create it")

exec_(
f"docker run -d --rm -p 5432:5432 --name qgepqwat -e POSTGRES_PASSWORD={pgconf['password'] or 'postgres'} -e POSTGRES_DB={pgconf['dbname'] or 'qgep_prod'} postgis/postgis"
f"docker run -d --rm -p 5432:5432 --name qgepqwat -e POSTGRES_PASSWORD={pgconf['password'] or 'postgres'} -e POSTGRES_DB={pgconf['dbname'] or 'qgep_prod'} postgis/postgis:13-3.2"
)

# Wait for PG
Expand Down

0 comments on commit 2a4d1d9

Please sign in to comment.