Skip to content

Commit

Permalink
Merge pull request #1798 from MTG/fix-test-action
Browse files Browse the repository at this point in the history
Avoid duplicating "volumes" key
  • Loading branch information
ffont authored Nov 25, 2024
2 parents 836e974 + 471ac04 commit 9e0a860
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docker-compose.test.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
version: "3.7"

volumes:
pgdata:

services:
db:
image: postgres:12.1
volumes:
- pgdata:/var/lib/postgresql/data
env_file:
- environment
volumes:
- pgdata:/var/lib/postgresql/data
- ./freesound-data/db_dev_dump:/freesound-data/db_dev_dump

ports:
- "5432:5432"
environment:
Expand Down

0 comments on commit 9e0a860

Please sign in to comment.