Compare commits
41 Commits
Author | SHA1 | Date | |
---|---|---|---|
483e9d577c | |||
812ea36541 | |||
d5f53386fb | |||
b75bd77fac | |||
963a7039ea | |||
7df2bdd0b3 | |||
202be63c7a | |||
d030d9cfda | |||
471ec62d02 | |||
512b07c72d | |||
843cb13e55 | |||
44e4103c22 | |||
92139571e8 | |||
6e929b2d16 | |||
6c75747f79 | |||
bbae3ba73e | |||
dd5c661cde | |||
85e041785f | |||
de070df02a | |||
e379eefa7b | |||
e1c134168e | |||
e2b02ef4a3 | |||
244bf3bc55 | |||
a53924d0b6 | |||
944b14db8c | |||
2772f9a939 | |||
3f4ac91f9f | |||
c6330317f9 | |||
76c690416e | |||
c55e25bfc3 | |||
780ec1e5a8 | |||
dd2f5eebed | |||
f8d3f8b73b | |||
5850caebfa | |||
0156b74149 | |||
9cce9e2b69 | |||
117e2a9df8 | |||
ed5c8eebc6 | |||
68b20ce5a5 | |||
913f2db068 | |||
66d138ee58 |
12
.gitea/workflows/container.yaml
Normal file
12
.gitea/workflows/container.yaml
Normal 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 }}
|
@ -1,18 +0,0 @@
|
|||||||
variables:
|
|
||||||
CONTAINER_NAME: thallian/matrix-synapse
|
|
||||||
|
|
||||||
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"
|
|
50
Containerfile
Normal file
50
Containerfile
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
FROM docker.io/alpine:3.21 AS builder
|
||||||
|
|
||||||
|
RUN apk add --no-cache \
|
||||||
|
alpine-sdk \
|
||||||
|
python3-dev \
|
||||||
|
py3-pip \
|
||||||
|
py3-wheel \
|
||||||
|
libffi-dev \
|
||||||
|
openssl-dev \
|
||||||
|
zlib-dev \
|
||||||
|
jpeg-dev \
|
||||||
|
rust \
|
||||||
|
cargo \
|
||||||
|
poetry \
|
||||||
|
git
|
||||||
|
|
||||||
|
ENV VERSION=v1.127.1
|
||||||
|
RUN git clone https://github.com/element-hq/synapse.git
|
||||||
|
WORKDIR /synapse
|
||||||
|
RUN git checkout $VERSION
|
||||||
|
|
||||||
|
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 adduser -h /var/lib/matrix-synapse -u 2222 -D -G matrix-synapse matrix-synapse
|
||||||
|
|
||||||
|
RUN apk add --no-cache \
|
||||||
|
python3 \
|
||||||
|
py3-psycopg2 \
|
||||||
|
py3-authlib \
|
||||||
|
py3-asn1 \
|
||||||
|
libffi \
|
||||||
|
openssl \
|
||||||
|
zlib \
|
||||||
|
jpeg
|
||||||
|
|
||||||
|
ENV PYTHONPATH=$PYTHONPATH:/py-pkgs
|
||||||
|
COPY --from=builder /install /py-pkgs
|
||||||
|
|
||||||
|
ADD /rootfs /
|
||||||
|
|
||||||
|
RUN chown -R matrix-synapse:matrix-synapse /var/lib/matrix-synapse
|
||||||
|
ENV HOME /var/lib/matrix-synapse
|
||||||
|
|
||||||
|
VOLUME /var/lib/matrix-synapse/media_store/ /var/lib/matrix-synapse/signing/ /etc/ssl/matrix-synapse/ /var/lib/matrix-synapse/registrations/
|
40
Dockerfile
40
Dockerfile
@ -1,40 +0,0 @@
|
|||||||
FROM docker.io/alpine:3.15 AS builder
|
|
||||||
|
|
||||||
ENV VERSION=v1.61.1
|
|
||||||
|
|
||||||
RUN apk add --no-cache \
|
|
||||||
alpine-sdk \
|
|
||||||
python3-dev \
|
|
||||||
py3-pip \
|
|
||||||
py3-wheel \
|
|
||||||
libffi-dev \
|
|
||||||
openssl-dev \
|
|
||||||
zlib-dev \
|
|
||||||
jpeg-dev \
|
|
||||||
cargo
|
|
||||||
|
|
||||||
RUN pip3 install --target="/install" matrix-synapse==$VERSION
|
|
||||||
|
|
||||||
FROM docker.io/thallian/confd-env:latest
|
|
||||||
|
|
||||||
RUN addgroup -g 2222 matrix-synapse
|
|
||||||
RUN adduser -h /var/lib/matrix-synapse -u 2222 -D -G matrix-synapse matrix-synapse
|
|
||||||
|
|
||||||
RUN apk add --no-cache \
|
|
||||||
python3 \
|
|
||||||
py3-psycopg2 \
|
|
||||||
py3-authlib \
|
|
||||||
libffi \
|
|
||||||
openssl \
|
|
||||||
zlib \
|
|
||||||
jpeg
|
|
||||||
|
|
||||||
ENV PYTHONPATH=$PYTHONPATH:/py-pkgs
|
|
||||||
COPY --from=builder /install /py-pkgs
|
|
||||||
|
|
||||||
ADD /rootfs /
|
|
||||||
|
|
||||||
RUN chown -R matrix-synapse:matrix-synapse /var/lib/matrix-synapse
|
|
||||||
ENV HOME /var/lib/matrix-synapse
|
|
||||||
|
|
||||||
VOLUME /var/lib/matrix-synapse/media_store/ /var/lib/matrix-synapse/signing/ /etc/ssl/matrix-synapse/ /var/lib/matrix-synapse/registrations/
|
|
@ -301,12 +301,14 @@ listeners:
|
|||||||
tls: false
|
tls: false
|
||||||
type: http
|
type: http
|
||||||
x_forwarded: true
|
x_forwarded: true
|
||||||
bind_addresses: ['0.0.0.0']
|
bind_addresses: ['::']
|
||||||
|
|
||||||
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
|
||||||
@ -1515,7 +1517,7 @@ room_prejoin_state:
|
|||||||
app_service_config_files: {{if not (getenv "REGISTRATIONS")}}[]{{end}}
|
app_service_config_files: {{if not (getenv "REGISTRATIONS")}}[]{{end}}
|
||||||
{{- if (getenv "REGISTRATIONS")}}
|
{{- if (getenv "REGISTRATIONS")}}
|
||||||
{{- range $registration := split (getenv "REGISTRATIONS") ";"}}
|
{{- range $registration := split (getenv "REGISTRATIONS") ";"}}
|
||||||
- {{ $registration -}}
|
- registrations/{{ $registration -}}
|
||||||
{{end}}
|
{{end}}
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user