Skip to content

Commit

Permalink
Fix code mounts for test and development
Browse files Browse the repository at this point in the history
  • Loading branch information
amCap1712 committed Aug 17, 2023
1 parent 70be98d commit 3153164
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docker/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ services:
context: ..
dockerfile: Dockerfile
target: metabrainz-dev
command: python /code/manage.py runserver -h 0.0.0.0 -p 80
command: python manage.py runserver -h 0.0.0.0 -p 80
volumes:
- ../data/replication_packets:/data/replication_packets
- ../data/json_dumps:/data/json_dumps
- ../data/logos:/code/metabrainz/static/img/user_logos
- ..:/code
- ..:/code/metabrainz
- ../frontend:/static
ports:
- "8000:80"
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
dockerfile: Dockerfile
target: metabrainz-dev
volumes:
- ..:/code
- ..:/code/metabrainz
depends_on:
- db
- redis
Expand Down

0 comments on commit 3153164

Please sign in to comment.