11 lines
232 B
Makefile
Raw Normal View History

2018-05-28 16:27:16 +03:00
VERSION=2.0.0
PROJECT=thingsboard
APP=cassandra
build:
docker build --pull -t ${PROJECT}/${APP}:${VERSION} -t ${PROJECT}/${APP}:latest .
push: build
docker push ${PROJECT}/${APP}:${VERSION}
2017-07-27 20:37:00 +03:00
docker push ${PROJECT}/${APP}:latest