chore: add docker commands to makefile

This commit is contained in:
Dmitriy Pleshevskiy 2022-03-22 21:50:22 +03:00
parent 6440077b98
commit f89b159fe6
1 changed files with 9 additions and 2 deletions

View File

@ -1,14 +1,21 @@
PAR := $(MAKE) -j 128
DOCKER_NAME := pleshevski
DOCKER_TAG := pleshevski
watch:
$(PAR) hr ts-w
docker-restart: docker-stop docker-run
docker-stop:
docker rm ${DOCKER_NAME} --force
docker-run:
docker run -d --restart always -p 30000:30000 pleshevski
docker run -d --restart always -p 30000:30000 --name ${DOCKER_NAME} ${DOCKER_TAG}
docker-build:
docker build -t pleshevski .
docker build -t ${DOCKER_TAG} .
build: ts