Compare commits

...

29 Commits
1.77.0 ... main

Author SHA1 Message Date
483e9d577c
push to 1.127.1
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 2m32s
2025-03-27 07:45:29 +01:00
812ea36541 push to 1.125.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 2m31s
2025-03-04 19:41:30 +01:00
d5f53386fb push to 1.124.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 2m50s
2025-02-17 10:23:42 +01:00
b75bd77fac
push to 1.121.1
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 2m36s
2024-12-12 10:26:31 +01:00
963a7039ea
push to 1.120.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 2m43s
2024-11-27 12:17:31 +01:00
7df2bdd0b3
push to 1.119.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 2m43s
2024-11-25 17:21:45 +01:00
202be63c7a
push to 1.118.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 3h14m5s
2024-11-01 08:12:46 +01:00
d030d9cfda
push to 1.116.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 3h13m42s
2024-10-02 08:18:13 +02:00
471ec62d02
push to 1.112.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 18m3s
2024-08-04 13:13:22 +02:00
512b07c72d
push to 1.111.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Has been cancelled
2024-07-18 09:12:18 +02:00
843cb13e55
push to 1.109.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 3h14m50s
2024-06-27 11:39:53 +02:00
44e4103c22
push to 1.108.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 3h14m54s
2024-05-31 10:19:36 +02:00
92139571e8
push to 1.105.1
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 3h9m12s
2024-04-23 19:10:58 +02:00
6e929b2d16
push to 1.105.0
All checks were successful
Build Multiarch Container Image / call-reusable-workflow (push) Successful in 11m47s
2024-04-22 13:48:59 +02:00
6c75747f79 push to 1.104.0
All checks were successful
Build Multiarch Container Image / call-reusable-workflow (push) Successful in 12m17s
2024-04-13 19:03:55 +02:00
bbae3ba73e
push to 1.103.0 2024-03-28 14:00:14 +01:00
dd5c661cde
push to 1.98.0 2024-01-01 19:58:27 +01:00
85e041785f
push to 1.96.1 2023-11-17 16:04:17 +01:00
de070df02a
push to 1.94.0 2023-10-10 14:33:44 +02:00
e379eefa7b
push to 1.92.3 2023-09-19 09:23:53 +02:00
e1c134168e
push to 1.91.2 2023-09-07 07:57:13 +02:00
e2b02ef4a3
push to 1.90.0 2023-08-22 09:17:33 +02:00
244bf3bc55
push to 1.88.0 2023-07-21 08:09:22 +02:00
a53924d0b6
push to 1.86.0 2023-06-25 16:16:37 +02:00
944b14db8c
push to 1.85.2 2023-06-09 11:45:38 +02:00
2772f9a939
push to 1.84.1 2023-05-29 12:42:59 +02:00
3f4ac91f9f
enable metrics 2023-04-07 15:00:37 +02:00
c6330317f9
enable metrics 2023-04-07 14:57:17 +02:00
76c690416e
push to v 1.80.0 2023-03-29 07:52:08 +02:00
4 changed files with 34 additions and 21 deletions

View File

@ -0,0 +1,12 @@
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 }}

View File

@ -1,11 +0,0 @@
pipeline:
publish-docker-image:
image: plugins/kaniko
settings:
repo: docker.io/thallian/matrix-synapse
tags: latest,${CI_COMMIT_SHA:0:8},${CI_COMMIT_TAG=pre}
dockerfile: Dockerfile
username:
from_secret: DOCKER_USER
password:
from_secret: DOCKER_PW

View File

@ -1,21 +1,30 @@
FROM docker.io/alpine:3.17 AS builder FROM docker.io/alpine:3.21 AS builder
ENV VERSION=v1.77.0
RUN apk add --no-cache \ RUN apk add --no-cache \
alpine-sdk \ alpine-sdk \
python3-dev \ python3-dev \
py3-pip \ py3-pip \
py3-wheel \ py3-wheel \
libffi-dev \ libffi-dev \
openssl-dev \ openssl-dev \
zlib-dev \ zlib-dev \
jpeg-dev \ jpeg-dev \
rust rust \
cargo \
poetry \
git
RUN pip3 install --target="/install" matrix-synapse==$VERSION ENV VERSION=v1.127.1
RUN git clone https://github.com/element-hq/synapse.git
WORKDIR /synapse
RUN git checkout $VERSION
FROM docker.io/thallian/confd-env:3.17-3.1.3.0 RUN poetry export -o /synapse/requirements.txt
RUN pip3 install --target="/install" -r /synapse/requirements.txt
RUN pip3 install --target="/install" --no-deps --no-warn-script-location /synapse[all];
FROM docker.io/thallian/confd-env:3.21-3.2.0.2
RUN addgroup -g 2222 matrix-synapse RUN addgroup -g 2222 matrix-synapse
RUN adduser -h /var/lib/matrix-synapse -u 2222 -D -G matrix-synapse matrix-synapse RUN adduser -h /var/lib/matrix-synapse -u 2222 -D -G matrix-synapse matrix-synapse
@ -24,6 +33,7 @@ RUN apk add --no-cache \
python3 \ python3 \
py3-psycopg2 \ py3-psycopg2 \
py3-authlib \ py3-authlib \
py3-asn1 \
libffi \ libffi \
openssl \ openssl \
zlib \ zlib \

View File

@ -306,7 +306,9 @@ listeners:
resources: resources:
- names: [client, federation] - names: [client, federation]
compress: false compress: false
- port: 9000
type: metrics
bind_addresses: ['::']
# example additional_resources: # example additional_resources:
# #
#additional_resources: #additional_resources:
@ -1139,7 +1141,7 @@ oembed:
# Defaults to "https://www.recaptcha.net/recaptcha/api/siteverify". # Defaults to "https://www.recaptcha.net/recaptcha/api/siteverify".
# #
#recaptcha_siteverify_api: "https://my.recaptcha.site" #recaptcha_siteverify_api: "https://my.recaptcha.site"
enable_authenticated_media: true
## TURN ## ## TURN ##
@ -1432,7 +1434,7 @@ account_threepid_delegates:
# Enable collection and rendering of performance metrics # Enable collection and rendering of performance metrics
# #
enable_metrics: false enable_metrics: true
# Enable sentry integration # Enable sentry integration
# NOTE: While attempts are made to ensure that the logs don't contain # NOTE: While attempts are made to ensure that the logs don't contain