[DOCKER] Change postgres data path to the correct one

This commit is contained in:
Hugo Sales 2020-05-14 21:55:45 +00:00 committed by Hugo Sales
parent b9bc88ddbf
commit aaf38353ea
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 2 additions and 2 deletions

View File

@ -71,11 +71,11 @@ services:
ports:
- 5432:5432
environment:
- PGDATA=/var/lib/postgresql/data
- PGDATA=/var/lib/postgres/data
env_file:
- ./docker/db/db.env
volumes:
- database:/var/lib/postgresql/data
- database:/var/lib/postgres/data
volumes:
database: