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.103.0 (#29) 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.102.0` -> `v1.103.0` | --- ### Release Notes <details> <summary>element-hq/synapse (ghcr.io/element-hq/synapse)</summary> ### [`v1.103.0`](https://github.com/element-hq/synapse/releases/tag/v1.103.0) [Compare Source](https://github.com/element-hq/synapse/compare/v1.102.0...v1.103.0) ### Synapse 1.103.0 (2024-03-19) No significant changes since 1.103.0rc1. ### Synapse 1.103.0rc1 (2024-03-12) ##### Features - Add a new [List Accounts v3](https://element-hq.github.io/synapse/v1.103/admin_api/user_admin_api.html#list-accounts-v3) Admin API with improved deactivated user filtering capabilities. ([#&#8203;16874](https://github.com/element-hq/synapse/issues/16874)) - Include `Retry-After` header by default per [MSC4041](https://github.com/matrix-org/matrix-spec-proposals/pull/4041). Contributed by [@&#8203;clokep](https://github.com/clokep). ([#&#8203;16947](https://github.com/element-hq/synapse/issues/16947)) ##### Bugfixes - Fix joining remote rooms when a module uses the `on_new_event` callback. This callback may now pass partial state events instead of the full state for remote rooms. Introduced in v1.76.0. ([#&#8203;16973](https://github.com/element-hq/synapse/issues/16973)) - Fix performance issue when joining very large rooms that can cause the server to lock up. Introduced in v1.100.0. Contributed by [@&#8203;ggogel](https://github.com/ggogel). ([#&#8203;16968](https://github.com/element-hq/synapse/issues/16968)) ##### Improved Documentation - Add HAProxy example for single port operation to reverse proxy documentation. Contributed by Georg Pfuetzenreuter ([@&#8203;tacerus](https://github.com/tacerus)). ([#&#8203;16768](https://github.com/element-hq/synapse/issues/16768)) - Improve the documentation around running Complement tests with new configuration parameters. ([#&#8203;16946](https://github.com/element-hq/synapse/issues/16946)) - Add docs on upgrading from a very old version. ([#&#8203;16951](https://github.com/element-hq/synapse/issues/16951)) ##### Updates to locked dependencies - Bump JasonEtco/create-an-issue from 2.9.1 to 2.9.2. ([#&#8203;16934](https://github.com/element-hq/synapse/issues/16934)) - Bump anyhow from 1.0.79 to 1.0.80. ([#&#8203;16935](https://github.com/element-hq/synapse/issues/16935)) - Bump dawidd6/action-download-artifact from 3.0.0 to 3.1.1. ([#&#8203;16933](https://github.com/element-hq/synapse/issues/16933)) - Bump furo from 2023.9.10 to 2024.1.29. ([#&#8203;16939](https://github.com/element-hq/synapse/issues/16939)) - Bump pyopenssl from 23.3.0 to 24.0.0. ([#&#8203;16937](https://github.com/element-hq/synapse/issues/16937)) - Bump types-netaddr from 0.10.0.20240106 to 1.2.0.20240219. ([#&#8203;16938](https://github.com/element-hq/synapse/issues/16938)) </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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNTAuMSIsInVwZGF0ZWRJblZlciI6IjM3LjI1MC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Reviewed-on: https://git.csprung.de/carsten/container-server/pulls/29 Co-authored-by: Renovate Bot <renovate@git.csprung.de> Co-committed-by: Renovate Bot <renovate@git.csprung.de>
2024-03-21 22:01:30 +01:00
image: ghcr.io/element-hq/synapse:v1.103.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