11 lines
		
	
	
		
			232 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			232 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
VERSION=1.2.4
 | 
						|
PROJECT=thingsboard
 | 
						|
APP=cassandra
 | 
						|
 | 
						|
build:
 | 
						|
	docker build --pull -t ${PROJECT}/${APP}:${VERSION} -t ${PROJECT}/${APP}:latest .
 | 
						|
 | 
						|
push: build
 | 
						|
	docker push ${PROJECT}/${APP}:${VERSION}
 | 
						|
	docker push ${PROJECT}/${APP}:latest
 |