Update makefile commands to use exec instead of shell

This is more what people expect -- to run commands in an existing container
This commit is contained in:
William Lachance 2019-04-03 13:48:46 -04:00 коммит произвёл William Lachance
Родитель 14fef26e20
Коммит 385ffb83d1
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -20,10 +20,10 @@ migrate:
docker-compose run web python manage.py migrate --run-syncdb
shell:
docker-compose run web bash
docker-compose exec web bash
django-shell:
docker-compose run web ./manage.py shell
docker-compose exec web ./manage.py shell
presto-cli:
docker-compose exec presto presto-cli