Move postgresql.conf into db/

This commit is contained in:
ekzyis 2024-08-24 23:55:10 -05:00
parent 256dba2a46
commit d87b97d235
2 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,8 @@ services:
- delphi:/var/lib/postgresql/data
- ./db/init.sql:/docker-entrypoint-initdb.d/init.sql
- ./db/schema.sql:/docker-entrypoint-initdb.d/schema.sql
- ./postgresql.conf:/var/lib/postgresql/data/postgresql.conf # for some reason this can't be mounted on first run
# for some reason this can't be mounted on first run
- ./db/postgresql.conf:/var/lib/postgresql/data/postgresql.conf
volumes:
delphi: