13 lines
215 B
Makefile
Raw Normal View History

2017-05-10 21:01:06 +03:00
VERSION=k8stest
PROJECT=thingsboard
APP=thingsboard-db-schema
all: build
build:
docker build --pull -t ${PROJECT}/${APP}:${VERSION} .
push: build
docker push ${PROJECT}/${APP}:${VERSION}
.PHONY: all build push