stopcontainer helper

This commit is contained in:
meeb 2023-11-30 18:49:58 +11:00
parent adf26cb4e3
commit 6c21ff15ab
1 changed files with 4 additions and 0 deletions

View File

@ -29,6 +29,10 @@ runcontainer:
$(docker) run --rm --name $(name) --env-file dev.env --log-opt max-size=50m -ti -p 4848:4848 $(image)
stopcontainer:
$(docker) stop $(name)
test: build
cd tubesync && $(python) manage.py test --verbosity=2 && cd ..