Sign in

简柏林 / thingskit · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit
  • docker
  • thingsboard-db-schema
  • Makefile
  • TB-58: k8s feature improvements
    08e9e903
    volodymyr-babak authored
    2017-05-10 21:01:06 +0300  
    Browse Files »
Makefile 215 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
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