Skip to content

Commit

Permalink
Removing volume declarations in docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-t-smith committed May 6, 2020
1 parent 55c1352 commit edfe3af
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,13 @@ version: "3.3"
services:
back-end:
build: ./back-end
volumes:
- ./back-end:/visual-programming/back-end
ports:
- "8000:8000"
command: bash -c "pipenv run python manage.py runserver 0.0.0.0:8000"
environment:
- DJANGO_ENV=development
front-end:
build: ./front-end
volumes:
- ./front-end:/visual-programming/front-end
# One-way volume to use node_modules from inside image
- /visual-programming/front-end/node_modules
stdin_open: true
ports:
- "3000:3000"
Expand Down

0 comments on commit edfe3af

Please sign in to comment.