From ecd3330ea8e6f354697c7c72b380755bce1abf69 Mon Sep 17 00:00:00 2001 From: leo Date: Thu, 4 May 2023 00:12:14 +0200 Subject: [PATCH] fix(just): mount actual data folder [skip ci] --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 651104d..6fc775d 100644 --- a/justfile +++ b/justfile @@ -39,7 +39,7 @@ dbstart: --rm \ -it \ -e POSTGRES_PASSWORD=postgres \ - -v $PWD/tmp/db:/var/lib/postgres/data \ + -v $PWD/tmp/db:/var/lib/postgresql/data \ -p 127.0.0.1:5432:5432 \ docker.io/library/postgres:15.2-alpine3.17