Merge pull request #258 from dims/fix-oops-in-docker-push-parameter
oops! fix the image name when we run docker push
This commit is contained in:
commit
cfbc441ba6
|
@ -72,7 +72,7 @@ endif
|
||||||
|
|
||||||
push: .push-$(ARCH)
|
push: .push-$(ARCH)
|
||||||
.push-$(ARCH): .container-$(ARCH)
|
.push-$(ARCH): .container-$(ARCH)
|
||||||
docker push $(IMAGE):$(TAG)
|
docker push $(MULTI_ARCH_IMG):$(TAG)
|
||||||
|
|
||||||
clean: $(addprefix sub-clean-,$(ALL_ARCH))
|
clean: $(addprefix sub-clean-,$(ALL_ARCH))
|
||||||
docker rmi -f $(IMAGE):$(TAG) || true
|
docker rmi -f $(IMAGE):$(TAG) || true
|
||||||
|
|
|
@ -68,7 +68,7 @@ endif
|
||||||
|
|
||||||
push: .push-$(ARCH)
|
push: .push-$(ARCH)
|
||||||
.push-$(ARCH): .container-$(ARCH)
|
.push-$(ARCH): .container-$(ARCH)
|
||||||
docker push $(IMAGE):$(TAG)
|
docker push $(MULTI_ARCH_IMG):$(TAG)
|
||||||
|
|
||||||
clean: $(addprefix sub-clean-,$(ALL_ARCH))
|
clean: $(addprefix sub-clean-,$(ALL_ARCH))
|
||||||
docker rmi -f $(IMAGE):$(TAG) || true
|
docker rmi -f $(IMAGE):$(TAG) || true
|
||||||
|
|
Loading…
Reference in New Issue