10 lines
183 B
Makefile
10 lines
183 B
Makefile
VITASTOR_VERSION ?= v2.1.0
|
|
|
|
all: build push
|
|
|
|
build:
|
|
@docker build --no-cache --rm -t vitalif/vitastor:$(VITASTOR_VERSION) .
|
|
|
|
push:
|
|
@docker push vitalif/vitastor:$(VITASTOR_VERSION)
|