First Shos
All checks were successful
Deploy Container Image to Registry / build-image (push) Successful in 1m57s
All checks were successful
Deploy Container Image to Registry / build-image (push) Successful in 1m57s
Signed-off-by: Patrick Niebeling <patrick.niebeling@adacor.com>
This commit is contained in:
14
.gitea/workflows/deploy.yaml
Normal file
14
.gitea/workflows/deploy.yaml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
name: Deploy Container Image to Registry
|
||||||
|
run-name: Deploy to RaspberryPi
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-image:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Run Build Hook
|
||||||
|
run: |
|
||||||
|
cd ${{ gitea.workspace }}/StableV2/
|
||||||
|
bash hooks/build
|
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"yaml.schemas": {
|
||||||
|
"https://json.schemastore.org/github-workflow.json": "file:///c%3A/Users/patrick.niebeling/Documents/gitRepos%20-%20privat/Docker-rspamd/.gitea/workflows/deploy.yaml"
|
||||||
|
}
|
||||||
|
}
|
@ -13,12 +13,12 @@ ENV DEBIAN_FRONTEND=noninteractive
|
|||||||
|
|
||||||
LABEL org.label-schema.name="Rspamd" \
|
LABEL org.label-schema.name="Rspamd" \
|
||||||
org.label-schema.description="Rspamd Spam Filter - STABLE" \
|
org.label-schema.description="Rspamd Spam Filter - STABLE" \
|
||||||
org.label-schema.usage="https://hub.docker.com/r/gnilebein/rspamd/" \
|
org.label-schema.usage="https://gitea.gnilebein.de/gnilebein/-/packages/container/docker-rspamd/latest" \
|
||||||
org.label-schema.url="https://rspamd.com" \
|
org.label-schema.url="https://rspamd.com" \
|
||||||
org.label-schema.vendor="gnilebein" \
|
org.label-schema.vendor="gnilebein" \
|
||||||
org.label-schema.schema-version="1.0" \
|
org.label-schema.schema-version="1.0" \
|
||||||
org.label-schema.version=$VERSION \
|
org.label-schema.version=$VERSION \
|
||||||
org.label-schema.vcs-url="https://github.com/rspamd/rspamd/" \
|
org.label-schema.vcs-url="https://gitea.gnilebein.de/gnilebein/Docker-rspamd" \
|
||||||
org.label-schema.vcs-ref=$COMMIT \
|
org.label-schema.vcs-ref=$COMMIT \
|
||||||
org.label-schema.build-date=$DATE
|
org.label-schema.build-date=$DATE
|
||||||
|
|
||||||
@ -56,14 +56,11 @@ COPY set_worker_password.sh /set_worker_password.sh
|
|||||||
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
||||||
|
|
||||||
# # Keep database and configuration persistent
|
# # Keep database and configuration persistent
|
||||||
# VOLUME /etc/rspamd/local.d
|
VOLUME /etc/rspamd/local.d
|
||||||
# VOLUME /etc/rspamd/override.d
|
VOLUME /etc/rspamd/override.d
|
||||||
# VOLUME /etc/rspamd/custom
|
VOLUME /etc/rspamd/custom
|
||||||
# VOLUME /var/lib/rspamd
|
VOLUME /var/lib/rspamd
|
||||||
|
|
||||||
# Port 11334 is for web frontend
|
|
||||||
# Port 11332 is for milter
|
|
||||||
# Port 11333 is for worker
|
|
||||||
EXPOSE 11332 11333 11334
|
EXPOSE 11332 11333 11334
|
||||||
|
|
||||||
# Healtcheck if Rspamd is returning stats
|
# Healtcheck if Rspamd is returning stats
|
||||||
|
Reference in New Issue
Block a user