Compare commits

..

No commits in common. "019484a49d5b6133c84efd463071094012c1a2cb" and "837f55ca8f3ed629919c585d3f10736c6509f128" have entirely different histories.

8 changed files with 19 additions and 24 deletions

View File

@ -1,12 +0,0 @@
name: Build Multiarch Container Image
on: [push]
jobs:
call-reusable-workflow:
uses: container/multiarch-build-workflow/.gitea/workflows/build.yaml@main
with:
repository: ${{ gitea.repository }}
ref_name: ${{ gitea.ref_name }}
sha: ${{ gitea.sha }}
registry_url: ${{ secrets.REGISTRY_URL }}
registry_user: ${{ secrets.REGISTRY_USER }}
registry_pw: ${{ secrets.REGISTRY_PW }}

18
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,18 @@
variables:
CONTAINER_NAME: thallian/rspamd
build:
stage: build
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
script:
- mkdir -p /kaniko/.docker
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$(printf "%s:%s" "$CI_REGISTRY_USER" "$CI_REGISTRY_PASSWORD" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json
- >-
/kaniko/executor
--context "$CI_PROJECT_DIR"
--dockerfile "$CI_PROJECT_DIR/Dockerfile"
--destination "$CONTAINER_NAME:$CI_COMMIT_SHA"
--destination "$CONTAINER_NAME:$CI_COMMIT_REF_NAME"
--destination "$CONTAINER_NAME:latest"

View File

@ -1,4 +1,4 @@
FROM docker.io/thallian/confd-env:3.19-3.1.6.2
FROM thallian/confd-env:latest
RUN apk --no-cache add \
rspamd \

View File

@ -4,4 +4,3 @@
path = "/var/lib/rspamd/dkim/$domain.$selector.key";
selector_map = "/etc/rspamd/dkim_selectors.map";
allow_username_mismatch = true;

View File

@ -1,7 +0,0 @@
authenticated {
priority = high;
authenticated = yes;
apply {
groups_disabled = ["rbl", "spf"];
}
}

View File

@ -1 +0,0 @@
disable_ipv6 = false;

View File

@ -1 +0,0 @@
bind_socket = "0.0.0.0:11332";

View File

@ -1 +0,0 @@
local_addrs = ["127.0.0.1"];