container-server/services/matrix/docker-compose.yml

48 lines
1.3 KiB
YAML
Raw Normal View History

2019-11-10 23:46:12 +01:00
version: '3.7'
# https://github.com/element-hq/synapse/pkgs/container/synapse
# https://github.com/element-hq/synapse/tree/master/docs
# https://github.com/element-hq/synapse/tree/master/contrib/docker
# https://github.com/element-hq/synapse/blob/master/docs/reverse_proxy.md
# https://github.com/element-hq/synapse/blob/master/docs/federate.md
# https://github.com/element-hq/synapse/blob/master/docs/postgres.md
# https://github.com/element-hq/synapse/blob/master/debian/register_new_matrix_user.ronn
2019-11-10 23:46:12 +01:00
networks:
matrix:
services:
matrix:
chore(deps): update ghcr.io/element-hq/synapse docker tag to v1.101.0 (#23) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/element-hq/synapse](https://matrix.org/docs/projects/server/synapse) ([source](https://github.com/element-hq/synapse)) | minor | `v1.100.0` -> `v1.101.0` | --- ### Release Notes <details> <summary>element-hq/synapse (ghcr.io/element-hq/synapse)</summary> ### [`v1.101.0`](https://github.com/element-hq/synapse/releases/tag/v1.101.0) [Compare Source](https://github.com/element-hq/synapse/compare/v1.100.0...v1.101.0) ### Synapse 1.101.0 (2024-02-13) ##### Bugfixes - Fix performance regression when fetching auth chains from the DB. Introduced in v1.100.0. ([#&#8203;16893](https://github.com/element-hq/synapse/issues/16893)) ### Synapse 1.101.0rc1 (2024-02-06) ##### Improved Documentation - Fix broken links in the documentation. ([#&#8203;16853](https://github.com/element-hq/synapse/issues/16853)) - Update MacOS installation instructions to mention that libicu is optional. ([#&#8203;16854](https://github.com/element-hq/synapse/issues/16854)) - The version picker now correctly lists versions after `v1.98.0`. ([#&#8203;16880](https://github.com/element-hq/synapse/issues/16880)) ##### Internal Changes - Add support for stabilised [MSC3981](https://github.com/matrix-org/matrix-spec-proposals/pull/3981) that adds a `recurse` parameter on the `/relations` API. ([#&#8203;16842](https://github.com/element-hq/synapse/issues/16842)) ##### Updates to locked dependencies - Bump dorny/paths-filter from 2 to 3. ([#&#8203;16869](https://github.com/element-hq/synapse/issues/16869)) - Bump gitpython from 3.1.40 to 3.1.41. ([#&#8203;16850](https://github.com/element-hq/synapse/issues/16850)) - Bump hiredis from 2.2.3 to 2.3.2. ([#&#8203;16862](https://github.com/element-hq/synapse/issues/16862)) - Bump jsonschema from 4.20.0 to 4.21.1. ([#&#8203;16887](https://github.com/element-hq/synapse/issues/16887)) - Bump lxml-stubs from 0.4.0 to 0.5.1. ([#&#8203;16885](https://github.com/element-hq/synapse/issues/16885)) - Bump mypy-zope from 1.0.1 to 1.0.3. ([#&#8203;16865](https://github.com/element-hq/synapse/issues/16865)) - Bump phonenumbers from 8.13.26 to 8.13.29. ([#&#8203;16868](https://github.com/element-hq/synapse/issues/16868)) - Bump pydantic from 2.5.3 to 2.6.0. ([#&#8203;16888](https://github.com/element-hq/synapse/issues/16888)) - Bump sentry-sdk from 1.39.1 to 1.40.0. ([#&#8203;16889](https://github.com/element-hq/synapse/issues/16889)) - Bump serde from 1.0.195 to 1.0.196. ([#&#8203;16867](https://github.com/element-hq/synapse/issues/16867)) - Bump serde_json from 1.0.111 to 1.0.113. ([#&#8203;16866](https://github.com/element-hq/synapse/issues/16866)) - Bump sigstore/cosign-installer from 3.3.0 to 3.4.0. ([#&#8203;16890](https://github.com/element-hq/synapse/issues/16890)) - Bump types-pillow from 10.1.0.2 to 10.2.0.20240125. ([#&#8203;16864](https://github.com/element-hq/synapse/issues/16864)) - Bump types-requests from 2.31.0.10 to 2.31.0.20240125. ([#&#8203;16886](https://github.com/element-hq/synapse/issues/16886)) - Bump types-setuptools from 69.0.0.0 to 69.0.0.20240125. ([#&#8203;16863](https://github.com/element-hq/synapse/issues/16863)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Reviewed-on: https://git.csprung.de/carsten/container-server/pulls/23 Co-authored-by: Renovate Bot <renovate@git.csprung.de> Co-committed-by: Renovate Bot <renovate@git.csprung.de>
2024-02-14 22:33:57 +01:00
image: ghcr.io/element-hq/synapse:v1.101.0
2019-11-10 23:46:12 +01:00
container_name: matrix
2019-12-04 22:00:35 +01:00
restart: "${RESTART:-no}"
2019-12-05 22:37:25 +01:00
hostname: matrix
domainname: ${BASE_DOMAIN}
2019-11-10 23:46:12 +01:00
environment:
- SYNAPSE_CONFIG_DIR=/config
- TZ=DE
- UID=0
- GID=0
volumes:
- ./matrix/config:/config:ro
2019-12-25 15:48:01 +01:00
- ${BASE_DIR:-/srv}/matrix/data:/data
2019-11-10 23:46:12 +01:00
depends_on:
- pg-matrix
networks:
- proxy
- matrix
pg-matrix:
image: postgres:16-alpine
2019-11-10 23:46:12 +01:00
container_name: pg-matrix
2019-12-04 22:00:35 +01:00
restart: "${RESTART:-no}"
2019-11-10 23:46:12 +01:00
environment:
- POSTGRES_DB=matrix
- POSTGRES_USER=matrix
2019-11-10 23:46:12 +01:00
- POSTGRES_PASSWORD=${MATRIX_PG_PWD:-matrix}
- POSTGRES_INITDB_ARGS=--encoding=UTF-8 --lc-collate=C --lc-ctype=C
2019-11-10 23:46:12 +01:00
volumes:
2019-12-25 15:48:01 +01:00
- ${BASE_DIR:-/srv}/matrix/psql:/var/lib/postgresql/data
2019-11-10 23:46:12 +01:00
networks:
- matrix