mirror of
https://github.com/umami-software/umami.git
synced 2026-02-17 19:15:37 +01:00
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.
This commit is contained in:
parent
405766d829
commit
536ef7b073
1 changed files with 1 additions and 1 deletions
|
|
@ -19,6 +19,6 @@ services:
|
||||||
POSTGRES_PASSWORD: umami
|
POSTGRES_PASSWORD: umami
|
||||||
volumes:
|
volumes:
|
||||||
- ./sql/schema.postgresql.sql:/docker-entrypoint-initdb.d/schema.postgresql.sql:ro
|
- ./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:
|
volumes:
|
||||||
umami-db-data:
|
umami-db-data:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue