From 536ef7b073880b550fc75eed199204b45b722680 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Villanueva?= <16082421+adrianvillanueva997@users.noreply.github.com> Date: Mon, 8 Mar 2021 14:23:09 +0100 Subject: [PATCH] Updated docker-compose for persistent pgsql volume There was a typo and the db data storage wasn't being created, in this way it is created in the same folder as the docker-compose.yml file. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 06f8ab1d..5f196392 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,6 +19,6 @@ services: POSTGRES_PASSWORD: umami volumes: - ./sql/schema.postgresql.sql:/docker-entrypoint-initdb.d/schema.postgresql.sql:ro - - umami-db-data:/var/lib/postgresql/data + - ./umami-db-data:/var/lib/postgresql/data volumes: umami-db-data: