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.102.0 (#27) 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.101.0` -> `v1.102.0` | --- ### Release Notes <details> <summary>element-hq/synapse (ghcr.io/element-hq/synapse)</summary> ### [`v1.102.0`](https://github.com/element-hq/synapse/releases/tag/v1.102.0) [Compare Source](https://github.com/element-hq/synapse/compare/v1.101.0...v1.102.0) ### Synapse 1.102.0 (2024-03-05) ##### Bugfixes - Revert https://github.com/element-hq/synapse/pull/16756, which caused incorrect notification counts on mobile clients since v1.100.0. ([#&#8203;16979](https://github.com/element-hq/synapse/issues/16979)) ### Synapse 1.102.0rc1 (2024-02-20) ##### Features - A metric was added for emails sent by Synapse, broken down by type: `synapse_emails_sent_total`. Contributed by Remi Rampin. ([#&#8203;16881](https://github.com/element-hq/synapse/issues/16881)) ##### Bugfixes - Do not send multiple concurrent requests for keys for the same server. ([#&#8203;16894](https://github.com/element-hq/synapse/issues/16894)) - Fix performance issue when joining very large rooms that can cause the server to lock up. Introduced in v1.100.0. ([#&#8203;16903](https://github.com/element-hq/synapse/issues/16903)) - Always prefer unthreaded receipt when >1 exist ([MSC4102](https://github.com/matrix-org/matrix-spec-proposals/pull/4102)). ([#&#8203;16927](https://github.com/element-hq/synapse/issues/16927)) ##### Improved Documentation - Fix a small typo in the Rooms section of the Admin API documentation. Contributed by [@&#8203;RainerZufall187](https://github.com/RainerZufall187). ([#&#8203;16857](https://github.com/element-hq/synapse/issues/16857)) ##### Internal Changes - Don't invalidate the entire event cache when we purge history. ([#&#8203;16905](https://github.com/element-hq/synapse/issues/16905)) - Add experimental config option to not send device list updates for specific users. ([#&#8203;16909](https://github.com/element-hq/synapse/issues/16909)) - Fix incorrect docker hub link in release script. ([#&#8203;16910](https://github.com/element-hq/synapse/issues/16910)) ##### Updates to locked dependencies - Bump attrs from 23.1.0 to 23.2.0. ([#&#8203;16899](https://github.com/element-hq/synapse/issues/16899)) - Bump bcrypt from 4.0.1 to 4.1.2. ([#&#8203;16900](https://github.com/element-hq/synapse/issues/16900)) - Bump pygithub from 2.1.1 to 2.2.0. ([#&#8203;16902](https://github.com/element-hq/synapse/issues/16902)) - Bump sentry-sdk from 1.40.0 to 1.40.3. ([#&#8203;16898](https://github.com/element-hq/synapse/issues/16898)) </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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjQuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyNC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Reviewed-on: https://git.csprung.de/carsten/container-server/pulls/27 Co-authored-by: Renovate Bot <renovate@git.csprung.de> Co-committed-by: Renovate Bot <renovate@git.csprung.de>
2024-03-10 19:42:50 +01:00
image: ghcr.io/element-hq/synapse:v1.102.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