From 01a96f2c8d96319e799dd5b3f7e989ae83659149 Mon Sep 17 00:00:00 2001 From: akash-m-envsage <122703615+akash-m-envsage@users.noreply.github.com> Date: Fri, 12 May 2023 08:43:12 +0530 Subject: [PATCH] fix(data persistency): docker volume persistency issue (#1139) because of the missing /data path, there was an issue wherein the data would be lost after docker compose down --- overrides/compose.postgres.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overrides/compose.postgres.yaml b/overrides/compose.postgres.yaml index f126fa31..433ca71a 100644 --- a/overrides/compose.postgres.yaml +++ b/overrides/compose.postgres.yaml @@ -12,7 +12,7 @@ services: environment: POSTGRES_PASSWORD: ${DB_PASSWORD:?No db password set} volumes: - - db-data:/var/lib/postgresql + - db-data:/var/lib/postgresql/data volumes: db-data: