Skip to content

Commit 60b5c56

Browse files
author
Keith Thompson
authored
Fix typo in path for Postgres data volume
This commit fixes an issue with the docker-compose.prod.yml file where we were mounting the data volume on the wrong path within the container.
1 parent 288a535 commit 60b5c56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker-compose.prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323
image: postgres
2424
env_file: .env.prod
2525
volumes:
26-
- db-data:/var/lib/postgresql/db-data
26+
- db-data:/var/lib/postgresql/data
2727
ports:
2828
- "5432:5432"
2929

0 commit comments

Comments
 (0)