wagtail / docker-wagtail-develop

74 stars 47 forks source link

Add makefile for docker commands #43

Closed stevedya closed 2 years ago

stevedya commented 2 years ago

This PR is for the lazy people like me. It is for the creation of a makefile for the docker compose commands. This will simplify the commands that you need to enter when working with the docker environment. For example running tests becomes

make test

which was

docker-compose exec -w /code/wagtail web python runtests.py

This PR also updates the readme to use those commands instead of the longer versions of them.

saevarom commented 2 years ago

This looks good, I'll merge it.