Compare commits
10 Commits
48658791c5
...
e18832a89b
Author | SHA1 | Date | |
---|---|---|---|
e18832a89b | |||
415ffa4999 | |||
308fca916e | |||
3ff436787f | |||
61f0066fc0 | |||
2aa5b98f98 | |||
fb1047603f | |||
740c91098e | |||
58f905d2da | |||
af2c98090f |
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
@ -1,6 +1,6 @@
|
|||||||
VERSION=v3.9.1-ls45
|
VERSION=v3.9.1-ls45
|
||||||
IMAGE=ddclient
|
IMAGE=ddclient
|
||||||
REGISTRY=registry.0xace.cc
|
REGISTRY=registry.0xace.cc/ghp
|
||||||
|
|
||||||
.PHONY: build push all
|
.PHONY: build push all
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM centos:8
|
FROM almalinux:8
|
||||||
|
|
||||||
RUN useradd -m -s /bin/false vmail
|
RUN useradd -m -s /bin/false vmail
|
||||||
|
|
||||||
@ -6,10 +6,9 @@ RUN dnf install -y epel-release && dnf update -y \
|
|||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
RUN dnf --nogpg install -y https://mirror.ghettoforge.org/distributions/gf/el/8/gf/x86_64/gf-release-8-11.gf.el8.noarch.rpm \
|
RUN dnf install -y postfix-3.5.8 postfix-ldap-3.5.8 postfix-mysql-3.5.8 postfix-pgsql-3.5.8 \
|
||||||
&& dnf install -y --enablerepo=gf-plus postfix3-3.5.8 postfix3-ldap-3.5.8 postfix3-mysql-3.5.8 postfix3-pgsql-3.5.8 \
|
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim-2.11.0 opendmarc-1.4.1.1 \
|
||||||
&& dnf install -y dovecot-2.3.8 dovecot-pigeonhole-2.3.8 opendkim-2.11.0 opendmarc-1.3.2 \
|
cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
||||||
&& dnf install -y cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
VERSION=2.3.8
|
VERSION=2.3.16-1
|
||||||
IMAGE=dovecot
|
IMAGE=dovecot
|
||||||
REGISTRY=registry.0xace.cc
|
REGISTRY=registry.0xace.cc/ghp
|
||||||
|
|
||||||
.PHONY: build push all
|
.PHONY: build push all
|
||||||
|
|
||||||
|
4
faas-cli/Dockerfile
Normal file
4
faas-cli/Dockerfile
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
FROM docker:20.10.10-dind
|
||||||
|
|
||||||
|
RUN wget https://github.com/openfaas/faas-cli/releases/download/0.13.13/faas-cli -O /usr/local/bin/faas-cli
|
||||||
|
RUN chmod +x /usr/local/bin/faas-cli
|
13
faas-cli/Makefile
Normal file
13
faas-cli/Makefile
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
VERSION=0.13.13
|
||||||
|
IMAGE=faas-cli
|
||||||
|
REGISTRY=registry.0xace.cc/ghp
|
||||||
|
|
||||||
|
.PHONY: build push all
|
||||||
|
|
||||||
|
build:
|
||||||
|
docker build -t $(REGISTRY)/$(IMAGE):$(VERSION) .
|
||||||
|
|
||||||
|
push:
|
||||||
|
docker push $(REGISTRY)/$(IMAGE):$(VERSION)
|
||||||
|
|
||||||
|
all: build push
|
@ -1,6 +1,6 @@
|
|||||||
VERSION=2.3.1
|
VERSION=2.3.1
|
||||||
IMAGE=haproxy
|
IMAGE=haproxy
|
||||||
REGISTRY=registry.0xace.cc
|
REGISTRY=registry.0xace.cc/ghp
|
||||||
|
|
||||||
.PHONY: build push all
|
.PHONY: build push all
|
||||||
|
|
||||||
|
8
jams/Dockerfile
Normal file
8
jams/Dockerfile
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
FROM openjdk:11.0.13-bullseye
|
||||||
|
|
||||||
|
COPY jams jams
|
||||||
|
WORKDIR jams
|
||||||
|
|
||||||
|
EXPOSE 8080
|
||||||
|
|
||||||
|
CMD ["java", "-jar", "jams-launcher.jar"]
|
16
jams/Makefile
Normal file
16
jams/Makefile
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
VERSION=3.3-1
|
||||||
|
IMAGE=jams
|
||||||
|
|
||||||
|
ifdef REGISTRY
|
||||||
|
_REGISTRY = $(REGISTRY)/
|
||||||
|
endif
|
||||||
|
|
||||||
|
.PHONY: build push all
|
||||||
|
|
||||||
|
build:
|
||||||
|
docker build -t $(_REGISTRY)$(IMAGE):$(VERSION) .
|
||||||
|
|
||||||
|
push:
|
||||||
|
docker push $(_REGISTRY)$(IMAGE):$(VERSION)
|
||||||
|
|
||||||
|
all: build push
|
1
jams/README.md
Normal file
1
jams/README.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
Download tar from https://dl.jami.net/jams/jams.tar
|
BIN
jams/jams/jams-launcher.jar
(Stored with Git LFS)
Normal file
BIN
jams/jams/jams-launcher.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
jams/jams/jams-server.jar
(Stored with Git LFS)
Normal file
BIN
jams/jams/jams-server.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
jams/jams/libs/ad-connector.jar
(Stored with Git LFS)
Normal file
BIN
jams/jams/libs/ad-connector.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
jams/jams/libs/authentication-module.jar
(Stored with Git LFS)
Normal file
BIN
jams/jams/libs/authentication-module.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
jams/jams/libs/cryptoengine.jar
(Stored with Git LFS)
Normal file
BIN
jams/jams/libs/cryptoengine.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
jams/jams/libs/ldap-connector.jar
(Stored with Git LFS)
Normal file
BIN
jams/jams/libs/ldap-connector.jar
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
jams/jams/userguide.pdf
(Stored with Git LFS)
Normal file
BIN
jams/jams/userguide.pdf
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,4 +1,4 @@
|
|||||||
FROM centos:8
|
FROM almalinux:8
|
||||||
|
|
||||||
RUN useradd -m -s /bin/false vmail
|
RUN useradd -m -s /bin/false vmail
|
||||||
|
|
||||||
@ -6,10 +6,9 @@ RUN dnf install -y epel-release && dnf update -y \
|
|||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
RUN dnf --nogpg install -y https://mirror.ghettoforge.org/distributions/gf/el/8/gf/x86_64/gf-release-8-11.gf.el8.noarch.rpm \
|
RUN dnf install -y postfix-3.5.8 postfix-ldap-3.5.8 postfix-mysql-3.5.8 postfix-pgsql-3.5.8 \
|
||||||
&& dnf install -y --enablerepo=gf-plus postfix3-3.5.8 postfix3-ldap-3.5.8 postfix3-mysql-3.5.8 postfix3-pgsql-3.5.8 \
|
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim-2.11.0 opendmarc-1.4.1.1 \
|
||||||
&& dnf install -y dovecot-2.3.8 dovecot-pigeonhole-2.3.8 opendkim-2.11.0 opendmarc-1.3.2 \
|
cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
||||||
&& dnf install -y cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
VERSION=2.11.0
|
VERSION=2.11.0-1
|
||||||
IMAGE=opendkim
|
IMAGE=opendkim
|
||||||
REGISTRY=registry.0xace.cc
|
REGISTRY=registry.0xace.cc/ghp
|
||||||
|
|
||||||
.PHONY: build push all
|
.PHONY: build push all
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM centos:8
|
FROM almalinux:8
|
||||||
|
|
||||||
RUN useradd -m -s /bin/false vmail
|
RUN useradd -m -s /bin/false vmail
|
||||||
|
|
||||||
@ -6,10 +6,9 @@ RUN dnf install -y epel-release && dnf update -y \
|
|||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
RUN dnf --nogpg install -y https://mirror.ghettoforge.org/distributions/gf/el/8/gf/x86_64/gf-release-8-11.gf.el8.noarch.rpm \
|
RUN dnf install -y postfix-3.5.8 postfix-ldap-3.5.8 postfix-mysql-3.5.8 postfix-pgsql-3.5.8 \
|
||||||
&& dnf install -y --enablerepo=gf-plus postfix3-3.5.8 postfix3-ldap-3.5.8 postfix3-mysql-3.5.8 postfix3-pgsql-3.5.8 \
|
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim-2.11.0 opendmarc-1.4.1.1 \
|
||||||
&& dnf install -y dovecot-2.3.8 dovecot-pigeonhole-2.3.8 opendkim-2.11.0 opendmarc-1.3.2 \
|
cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
||||||
&& dnf install -y cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
VERSION=1.3.2
|
VERSION=1.4.1.1-1
|
||||||
IMAGE=opendmarc
|
IMAGE=opendmarc
|
||||||
REGISTRY=registry.0xace.cc
|
REGISTRY=registry.0xace.cc/ghp
|
||||||
|
|
||||||
.PHONY: build push all
|
.PHONY: build push all
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM python:3-buster
|
FROM python:3.9-buster
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y git \
|
apt-get install -y git \
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
VERSION=0.6.4
|
VERSION=0.6.4
|
||||||
IMAGE=playmaker
|
IMAGE=playmaker
|
||||||
REGISTRY=registry.0xace.cc
|
REGISTRY=registry.0xace.cc/ghp
|
||||||
|
|
||||||
.PHONY: build push all
|
.PHONY: build push all
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM centos:8
|
FROM almalinux:8
|
||||||
|
|
||||||
RUN useradd -m -s /bin/false vmail
|
RUN useradd -m -s /bin/false vmail
|
||||||
|
|
||||||
@ -6,10 +6,9 @@ RUN dnf install -y epel-release && dnf update -y \
|
|||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
RUN dnf --nogpg install -y https://mirror.ghettoforge.org/distributions/gf/el/8/gf/x86_64/gf-release-8-11.gf.el8.noarch.rpm \
|
RUN dnf install -y postfix-3.5.8 postfix-ldap-3.5.8 postfix-mysql-3.5.8 postfix-pgsql-3.5.8 \
|
||||||
&& dnf install -y --enablerepo=gf-plus postfix3-3.5.8 postfix3-ldap-3.5.8 postfix3-mysql-3.5.8 postfix3-pgsql-3.5.8 \
|
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim-2.11.0 opendmarc-1.4.1.1 \
|
||||||
&& dnf install -y dovecot-2.3.8 dovecot-pigeonhole-2.3.8 opendkim-2.11.0 opendmarc-1.3.2 \
|
cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
||||||
&& dnf install -y cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
VERSION=3.5.8
|
VERSION=3.5.8-1
|
||||||
IMAGE=postfix
|
IMAGE=postfix
|
||||||
REGISTRY=registry.0xace.cc
|
REGISTRY=registry.0xace.cc/ghp
|
||||||
|
|
||||||
.PHONY: build push all
|
.PHONY: build push all
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM centos:8
|
FROM almalinux:8
|
||||||
|
|
||||||
RUN useradd -m -s /bin/false vmail
|
RUN useradd -m -s /bin/false vmail
|
||||||
|
|
||||||
@ -6,16 +6,15 @@ RUN dnf install -y epel-release && dnf update -y \
|
|||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
RUN dnf --nogpg install -y https://mirror.ghettoforge.org/distributions/gf/el/8/gf/x86_64/gf-release-8-11.gf.el8.noarch.rpm \
|
RUN dnf install -y postfix-3.5.8 postfix-ldap-3.5.8 postfix-mysql-3.5.8 postfix-pgsql-3.5.8 \
|
||||||
&& dnf install -y --enablerepo=gf-plus postfix3-3.5.8 postfix3-ldap-3.5.8 postfix3-mysql-3.5.8 postfix3-pgsql-3.5.8 \
|
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim opendmarc \
|
||||||
&& dnf install -y dovecot-2.3.8 dovecot-pigeonhole-2.3.8 opendkim-2.11.0 opendmarc-1.3.2 \
|
cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
||||||
&& dnf install -y cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
RUN curl https://rspamd.com/rpm-stable/centos-8/rspamd.repo > /etc/yum.repos.d/rspamd.repo \
|
RUN curl https://rspamd.com/rpm-stable/centos-8/rspamd.repo > /etc/yum.repos.d/rspamd.repo \
|
||||||
&& rpm --import https://rspamd.com/rpm/gpg.key \
|
&& rpm --import https://rspamd.com/rpm/gpg.key \
|
||||||
&& dnf install -y rspamd-2.7 \
|
&& dnf install -y rspamd-3.5 \
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
VERSION=2.7
|
VERSION=3.5-1
|
||||||
IMAGE=rspamd
|
IMAGE=rspamd
|
||||||
REGISTRY=registry.0xace.cc
|
REGISTRY=registry.0xace.cc/ghp
|
||||||
|
|
||||||
.PHONY: build push all
|
.PHONY: build push all
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
VERSION=latest
|
VERSION=latest
|
||||||
IMAGE=tsig
|
IMAGE=tsig
|
||||||
REGISTRY=registry.0xace.cc
|
REGISTRY=registry.0xace.cc/ghp
|
||||||
|
|
||||||
.PHONY: build push all
|
.PHONY: build push all
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user