From 89e35af7036caf95a27dd6632d62adc1f900a450 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20R=C3=A9?= Date: Thu, 12 Feb 2026 16:20:42 +0400 Subject: [PATCH] Fix compose.yaml pg volumes mount MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Émile Ré --- compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index 6c09b53ff..8b541c9f0 100644 --- a/compose.yaml +++ b/compose.yaml @@ -10,7 +10,7 @@ services: - "5432:5432" volumes: - "./compose/postgres:/docker-entrypoint-initdb.d:ro" - - "postgres-data:/var/lib/postgresql/data:rw" + - "postgres-data:/var/lib/postgresql:rw" environment: POSTGRES_USER: "postgres" POSTGRES_PASSWORD: "postgres"