container-server/services/matrix/docker-compose.yml
Renovate Bot c6e63f1b6a 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: carsten/container-server#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

47 lines
1.3 KiB
YAML

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
networks:
matrix:
services:
matrix:
image: ghcr.io/element-hq/synapse:v1.102.0
container_name: matrix
restart: "${RESTART:-no}"
hostname: matrix
domainname: ${BASE_DOMAIN}
environment:
- SYNAPSE_CONFIG_DIR=/config
- TZ=DE
- UID=0
- GID=0
volumes:
- ./matrix/config:/config:ro
- ${BASE_DIR:-/srv}/matrix/data:/data
depends_on:
- pg-matrix
networks:
- proxy
- matrix
pg-matrix:
image: postgres:16-alpine
container_name: pg-matrix
restart: "${RESTART:-no}"
environment:
- POSTGRES_DB=matrix
- POSTGRES_USER=matrix
- POSTGRES_PASSWORD=${MATRIX_PG_PWD:-matrix}
- POSTGRES_INITDB_ARGS=--encoding=UTF-8 --lc-collate=C --lc-ctype=C
volumes:
- ${BASE_DIR:-/srv}/matrix/psql:/var/lib/postgresql/data
networks:
- matrix