docker/dovecot/Makefile

14 lines
215 B
Makefile

VERSION=2.3.16-2
IMAGE=dovecot
REGISTRY=gitea.geekhome.org/ghp
.PHONY: build push all
build:
docker build -t $(REGISTRY)/$(IMAGE):$(VERSION) .
push:
docker push $(REGISTRY)/$(IMAGE):$(VERSION)
all: build push