Compare commits
No commits in common. "019484a49d5b6133c84efd463071094012c1a2cb" and "837f55ca8f3ed629919c585d3f10736c6509f128" have entirely different histories.
019484a49d
...
837f55ca8f
@ -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
18
.gitlab-ci.yml
Normal 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"
|
@ -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 \
|
@ -4,4 +4,3 @@
|
||||
|
||||
path = "/var/lib/rspamd/dkim/$domain.$selector.key";
|
||||
selector_map = "/etc/rspamd/dkim_selectors.map";
|
||||
allow_username_mismatch = true;
|
||||
|
@ -1,7 +0,0 @@
|
||||
authenticated {
|
||||
priority = high;
|
||||
authenticated = yes;
|
||||
apply {
|
||||
groups_disabled = ["rbl", "spf"];
|
||||
}
|
||||
}
|
@ -1 +0,0 @@
|
||||
disable_ipv6 = false;
|
@ -1 +0,0 @@
|
||||
bind_socket = "0.0.0.0:11332";
|
@ -1 +0,0 @@
|
||||
local_addrs = ["127.0.0.1"];
|
Loading…
Reference in New Issue
Block a user