Update env file example to contain Volume mount point for DB folder

This commit is contained in:
Mario Hüttel 2024-11-17 19:36:27 +01:00
parent 561b2aed27
commit 66f4eea77d
2 changed files with 4 additions and 1 deletions

View File

@ -9,6 +9,9 @@ DJANGO_STATIC_VOL=/path/to/static/root
# Path to the media root. Must be served by a webserver on the media URL
DJANGO_MEDIA_VOL=/path/to/media/root
# folder for DB
PGDATA_VOL=/path/to/pgdata
# Port to serve the App
PORT=8000

View File

@ -35,7 +35,7 @@ services:
POSTGRES_PASSWORD: "${DJANGO_POSTGRESQL_PW:-p4ssw0rd}"
POSTGRES_DB: "shimatta_kenkyusho"
volumes:
- "${PGDATA:-./run/pgdata}:/var/lib/postgresql/data"
- "${PGDATA_VOL:-./run/pgdata}:/var/lib/postgresql/data"
networks:
- backendnet
healthcheck: