From 723c3fea5f129db3d23afa2aa1240a48e595d0eb Mon Sep 17 00:00:00 2001 From: leo Date: Sat, 20 May 2023 18:00:02 +0200 Subject: [PATCH] justfile: add db init args [skip ci] --- justfile | 1 + 1 file changed, 1 insertion(+) diff --git a/justfile b/justfile index 8ddc391..af86f81 100644 --- a/justfile +++ b/justfile @@ -40,6 +40,7 @@ dbstart: --rm \ -it \ -e POSTGRES_PASSWORD=postgres \ + -e POSTGRES_INITDB_ARGS="--auth-host=scram-sha-256 --auth-local=scram-sha-256" -v $PWD/tmp/db:/var/lib/postgresql/data \ -p 127.0.0.1:5432:5432 \ docker.io/library/postgres:15.2-alpine3.17