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.
pull/528/head
Adrián Villanueva 2021-03-08 14:23:09 +01:00 committed by GitHub
parent 405766d829
commit 536ef7b073
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: