use the development compose for all Makefile commands

This commit is contained in:
Andreas Zweili 2020-07-04 12:56:58 +02:00
parent 0458cbd277
commit a6ad70735b
1 changed files with 2 additions and 2 deletions

View File

@ -31,11 +31,11 @@ clean:
sudo find . \( -name __pycache__ -o -name "*.pyc" \) -delete
sudo rm -f */migrations/0*.py
sudo rm -rf htmlcov/
docker-compose down -v
docker-compose -f docker-compose-development.yml down -v
cleanall:
rm -rf venv/
sudo find . \( -name __pycache__ -o -name "*.pyc" \) -delete
sudo rm */migrations/*.py
sudo rm -rf htmlcov/
docker-compose down -v --rmi local
docker-compose -f docker-compose-development.yml down -v --rmi local