Files
ddclient
dovecot
faas-cli
haproxy
jams
opendkim
opendmarc
playmaker
postfix
pwgen
rspamd
Dockerfile
Makefile
tsig
.gitattributes
README.md
build.yaml
docker/rspamd/Makefile
2023-10-30 10:41:32 +03:00

14 lines
224 B
Makefile

VERSION=3.7.3-1
IMAGE=rspamd
REGISTRY=gitea.geekhome.org/ghp
.PHONY: build push all
build:
docker build --no-cache -t $(REGISTRY)/$(IMAGE):$(VERSION) .
push:
docker push $(REGISTRY)/$(IMAGE):$(VERSION)
all: build push