Skip to content

Commit

Permalink
Fix docker compose db configuration (#785)
Browse files Browse the repository at this point in the history
  • Loading branch information
vaddenz authored Jan 28, 2024
1 parent e61cafa commit f0d57e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
ports:
- 5432:5432
volumes:
- ./pgdata_dev:/var/lib/postgresql/data
- pgdata_dev:/var/lib/postgresql/data
env_file:
- ./env/.env.dev

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
expose:
- 5432
volumes:
- ./pgdata_prod:/var/lib/postgresql/data
- pgdata_prod:/var/lib/postgresql/data
env_file:
- ./env/.env.prod

Expand Down

0 comments on commit f0d57e3

Please sign in to comment.