You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
448 B
Makefile
12 lines
448 B
Makefile
version := v$(shell /bin/date "+%y%m%d%H%M%S")
|
|
|
|
build:
|
|
cd $(GOPATH)/src/zero && docker build -t registry.cn-hangzhou.aliyuncs.com/xapp/pub:$(version) . -f example/etcd/pub/Dockerfile
|
|
docker image prune --filter label=stage=gobuilder -f
|
|
|
|
push: build
|
|
docker push registry.cn-hangzhou.aliyuncs.com/xapp/pub:$(version)
|
|
|
|
deploy: push
|
|
kubectl -n adhoc set image deployment/pub-deployment pub=registry-vpc.cn-hangzhou.aliyuncs.com/xapp/pub:$(version)
|