Compare commits
No commits in common. "1fe3d9ede5666018470f2c524bf3c47c475af7b7" and "b6de7217133326efac9d06c2e0501e6c550f39d6" have entirely different histories.
1fe3d9ede5
...
b6de721713
@ -1,14 +1,12 @@
|
|||||||
FROM almalinux:9
|
FROM almalinux:8
|
||||||
|
|
||||||
RUN useradd -m -s /bin/false vmail
|
RUN useradd -m -s /bin/false vmail
|
||||||
|
|
||||||
RUN dnf install -y epel-release dnf-plugins-core \
|
RUN dnf install -y epel-release && dnf update -y \
|
||||||
&& dnf update -y \
|
|
||||||
&& dnf config-manager --enable crb \
|
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
RUN dnf install -y postfix-3.5.9 postfix-ldap-3.5.9 postfix-mysql-3.5.9 postfix-pgsql-3.5.9 \
|
RUN dnf install -y postfix-3.5.8 postfix-ldap-3.5.8 postfix-mysql-3.5.8 postfix-pgsql-3.5.8 \
|
||||||
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim-2.11.0 opendmarc-1.4.2 \
|
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim-2.11.0 opendmarc-1.4.2 \
|
||||||
cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
VERSION=2.3.16-2
|
VERSION=2.3.16-1
|
||||||
IMAGE=dovecot
|
IMAGE=dovecot
|
||||||
REGISTRY=gitea.geekhome.org/ghp
|
REGISTRY=gitea.geekhome.org/ghp
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
FROM docker:23.0.4-dind
|
FROM docker:20.10.10-dind
|
||||||
ARG VERSION
|
|
||||||
|
|
||||||
RUN wget https://github.com/openfaas/faas-cli/releases/download/${VERSION}/faas-cli -O /usr/local/bin/faas-cli
|
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
|
RUN chmod +x /usr/local/bin/faas-cli
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
VERSION=0.16.7
|
VERSION=0.13.13
|
||||||
IMAGE=faas-cli
|
IMAGE=faas-cli
|
||||||
REGISTRY=gitea.geekhome.org/ghp
|
REGISTRY=gitea.geekhome.org/ghp
|
||||||
|
|
||||||
.PHONY: build push all
|
.PHONY: build push all
|
||||||
|
|
||||||
build:
|
build:
|
||||||
docker build --build-arg="VERSION=$(VERSION)" -t $(REGISTRY)/$(IMAGE):$(VERSION) .
|
docker build -t $(REGISTRY)/$(IMAGE):$(VERSION) .
|
||||||
|
|
||||||
push:
|
push:
|
||||||
docker push $(REGISTRY)/$(IMAGE):$(VERSION)
|
docker push $(REGISTRY)/$(IMAGE):$(VERSION)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM openjdk:22-slim-bookworm
|
FROM openjdk:11.0.13-bullseye
|
||||||
|
|
||||||
COPY jams jams
|
COPY jams jams
|
||||||
WORKDIR jams
|
WORKDIR jams
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
VERSION=3.5-1
|
VERSION=3.3-1
|
||||||
IMAGE=jams
|
IMAGE=jams
|
||||||
|
|
||||||
ifdef REGISTRY
|
ifdef REGISTRY
|
||||||
|
BIN
jams/jams/jams-launcher.jar
(Stored with Git LFS)
BIN
jams/jams/jams-launcher.jar
(Stored with Git LFS)
Binary file not shown.
BIN
jams/jams/jams-server.jar
(Stored with Git LFS)
BIN
jams/jams/jams-server.jar
(Stored with Git LFS)
Binary file not shown.
BIN
jams/jams/libs/ad-connector.jar
(Stored with Git LFS)
BIN
jams/jams/libs/ad-connector.jar
(Stored with Git LFS)
Binary file not shown.
BIN
jams/jams/libs/authentication-module.jar
(Stored with Git LFS)
BIN
jams/jams/libs/authentication-module.jar
(Stored with Git LFS)
Binary file not shown.
BIN
jams/jams/libs/cryptoengine.jar
(Stored with Git LFS)
BIN
jams/jams/libs/cryptoengine.jar
(Stored with Git LFS)
Binary file not shown.
BIN
jams/jams/libs/ldap-connector.jar
(Stored with Git LFS)
BIN
jams/jams/libs/ldap-connector.jar
(Stored with Git LFS)
Binary file not shown.
@ -1,14 +1,12 @@
|
|||||||
FROM almalinux:9
|
FROM almalinux:8
|
||||||
|
|
||||||
RUN useradd -m -s /bin/false vmail
|
RUN useradd -m -s /bin/false vmail
|
||||||
|
|
||||||
RUN dnf install -y epel-release dnf-plugins-core \
|
RUN dnf install -y epel-release && dnf update -y \
|
||||||
&& dnf update -y \
|
|
||||||
&& dnf config-manager --enable crb \
|
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
RUN dnf install -y postfix-3.5.9 postfix-ldap-3.5.9 postfix-mysql-3.5.9 postfix-pgsql-3.5.9 \
|
RUN dnf install -y postfix-3.5.8 postfix-ldap-3.5.8 postfix-mysql-3.5.8 postfix-pgsql-3.5.8 \
|
||||||
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim-2.11.0 opendmarc-1.4.2 \
|
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim-2.11.0 opendmarc-1.4.2 \
|
||||||
cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
VERSION=2.11.0-2
|
VERSION=2.11.0-1
|
||||||
IMAGE=opendkim
|
IMAGE=opendkim
|
||||||
REGISTRY=gitea.geekhome.org/ghp
|
REGISTRY=gitea.geekhome.org/ghp
|
||||||
|
|
||||||
|
@ -1,14 +1,12 @@
|
|||||||
FROM almalinux:9
|
FROM almalinux:8
|
||||||
|
|
||||||
RUN useradd -m -s /bin/false vmail
|
RUN useradd -m -s /bin/false vmail
|
||||||
|
|
||||||
RUN dnf install -y epel-release dnf-plugins-core \
|
RUN dnf install -y epel-release && dnf update -y \
|
||||||
&& dnf update -y \
|
|
||||||
&& dnf config-manager --enable crb \
|
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
RUN dnf install -y postfix-3.5.9 postfix-ldap-3.5.9 postfix-mysql-3.5.9 postfix-pgsql-3.5.9 \
|
RUN dnf install -y postfix-3.5.8 postfix-ldap-3.5.8 postfix-mysql-3.5.8 postfix-pgsql-3.5.8 \
|
||||||
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim-2.11.0 opendmarc-1.4.2 \
|
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim-2.11.0 opendmarc-1.4.2 \
|
||||||
cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
VERSION=1.4.2-2
|
VERSION=1.4.2-1
|
||||||
IMAGE=opendmarc
|
IMAGE=opendmarc
|
||||||
REGISTRY=gitea.geekhome.org/ghp
|
REGISTRY=gitea.geekhome.org/ghp
|
||||||
|
|
||||||
|
@ -1,14 +1,12 @@
|
|||||||
FROM almalinux:9
|
FROM almalinux:8
|
||||||
|
|
||||||
RUN useradd -m -s /bin/false vmail
|
RUN useradd -m -s /bin/false vmail
|
||||||
|
|
||||||
RUN dnf install -y epel-release dnf-plugins-core \
|
RUN dnf install -y epel-release && dnf update -y \
|
||||||
&& dnf update -y \
|
|
||||||
&& dnf config-manager --enable crb \
|
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
RUN dnf install -y postfix-3.5.9 postfix-ldap-3.5.9 postfix-mysql-3.5.9 postfix-pgsql-3.5.9 \
|
RUN dnf install -y postfix-3.5.8 postfix-ldap-3.5.8 postfix-mysql-3.5.8 postfix-pgsql-3.5.8 \
|
||||||
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim-2.11.0 opendmarc-1.4.2 \
|
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim-2.11.0 opendmarc-1.4.2 \
|
||||||
cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
VERSION=3.5.9-1
|
VERSION=3.5.8-1
|
||||||
IMAGE=postfix
|
IMAGE=postfix
|
||||||
REGISTRY=gitea.geekhome.org/ghp
|
REGISTRY=gitea.geekhome.org/ghp
|
||||||
|
|
||||||
|
@ -1,26 +1,22 @@
|
|||||||
FROM almalinux:9
|
FROM almalinux:8
|
||||||
|
|
||||||
RUN useradd -m -s /bin/false vmail
|
RUN useradd -m -s /bin/false vmail
|
||||||
|
|
||||||
RUN dnf install -y epel-release dnf-plugins-core \
|
RUN dnf install -y epel-release && dnf update -y \
|
||||||
&& dnf update -y \
|
|
||||||
&& dnf config-manager --enable crb \
|
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum
|
&& rm -rf /var/cache/yum
|
||||||
|
|
||||||
RUN dnf install -y postfix-3.5.9 postfix-ldap-3.5.9 postfix-mysql-3.5.9 postfix-pgsql-3.5.9 \
|
RUN dnf install -y postfix-3.5.8 postfix-ldap-3.5.8 postfix-mysql-3.5.8 postfix-pgsql-3.5.8 \
|
||||||
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim-2.11.0 opendmarc-1.4.2 \
|
dovecot-2.3.16 dovecot-pigeonhole-2.3.16 opendkim opendmarc \
|
||||||
cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 pypolicyd-spf \
|
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 update-crypto-policies --set DEFAULT:SHA1 \
|
RUN curl https://rspamd.com/rpm-stable/centos-8/rspamd.repo > /etc/yum.repos.d/rspamd.repo \
|
||||||
&& curl https://rspamd.com/rpm-stable/centos-9/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-3.5 \
|
&& dnf install -y rspamd-3.5 \
|
||||||
&& dnf clean all \
|
&& dnf clean all \
|
||||||
&& rm -rf /var/cache/yum \
|
&& rm -rf /var/cache/yum
|
||||||
&& update-crypto-policies --set DEFAULT
|
|
||||||
|
|
||||||
EXPOSE 11332
|
EXPOSE 11332
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
VERSION=3.5-2
|
VERSION=3.5-1
|
||||||
IMAGE=rspamd
|
IMAGE=rspamd
|
||||||
REGISTRY=gitea.geekhome.org/ghp
|
REGISTRY=gitea.geekhome.org/ghp
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user