A micro-fix to the make-etcd script and a minor fix to vitastor-cli rm leaving "deleted" flag after itself when using "inverse delete".
10 lines
183 B
Makefile
10 lines
183 B
Makefile
VITASTOR_VERSION ?= v2.4.2
|
|
|
|
all: build push
|
|
|
|
build:
|
|
@docker build --no-cache --rm -t vitalif/vitastor:$(VITASTOR_VERSION) .
|
|
|
|
push:
|
|
@docker push vitalif/vitastor:$(VITASTOR_VERSION)
|