taiga/Makefile
2017-12-13 01:31:31 +01:00

21 lines
376 B
Makefile

NS ?= andrey01
NAME ?= taiga
VERSION ?= 3.1.0
default: build
build:
docker build --pull -t $(NS)/$(NAME):$(VERSION) -f Dockerfile .
publish:
docker push $(NS)/$(NAME):$(VERSION)
check:
docker run --rm -i $(NS)/$(NAME):$(VERSION) sh -c "set -x; exit 0"
console:
docker run --rm -ti --entrypoint sh $(NS)/$(NAME):$(VERSION)
clean:
docker rmi $(NS)/$(NAME):$(VERSION)