feat: add docker commands to makefile

This commit is contained in:
Dmitriy Pleshevskiy 2022-03-22 19:42:14 +03:00
parent 7a6dbe32d0
commit 8a26f13bf5
1 changed files with 6 additions and 0 deletions

View File

@ -4,6 +4,12 @@ PAR := $(MAKE) -j 128
watch:
$(PAR) hr ts-w
docker-run:
docker run --restart always -p 30000:30000 pleshevski
docker-build:
docker build -t pleshevski .
build: ts
start: