GHP publish

This commit is contained in:
ace
2021-01-09 21:06:20 +03:00
commit 380dbf855f
68 changed files with 10903 additions and 0 deletions

13
dovecot/Makefile Normal file
View File

@ -0,0 +1,13 @@
VERSION=2.3.8
IMAGE=dovecot
REGISTRY=registry.0xace.cc
.PHONY: build push all
build:
docker build -t $(REGISTRY)/$(IMAGE):$(VERSION) .
push:
docker push $(REGISTRY)/$(IMAGE):$(VERSION)
all: build push