Skip to content

Commit

Permalink
Merge pull request #693 from coyote-team/add-db-docker-volume
Browse files Browse the repository at this point in the history
Add DB volume to production compose file
  • Loading branch information
jscholes authored Jan 8, 2024
2 parents c46a138 + 965a86e commit 27bb473
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docker-compose-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ services:
POSTGRES_PASSWORD: postgres
expose:
- 5432
volumes: []
volumes:
- db:/var/lib/postgresql/data

redis:
image: redis:7.0.0-alpine3.16
Expand Down Expand Up @@ -56,3 +57,6 @@ services:
- redis
ports: []

volumes:
db:

0 comments on commit 27bb473

Please sign in to comment.