synapse. Adding Sliding Sync Proxy.
All checks were successful
continuous-integration/drone/pr Build is passing
All checks were successful
continuous-integration/drone/pr Build is passing
This commit is contained in:
parent
69345b941f
commit
cb932778b6
|
@ -27,5 +27,17 @@ SYNAPSE_REPORT_STATS=no
|
||||||
#UID=991
|
#UID=991
|
||||||
#GID=991
|
#GID=991
|
||||||
|
|
||||||
|
# Sliding sync settings
|
||||||
|
SS_PROXY_IMAGE_TAG=latest
|
||||||
|
|
||||||
|
SYNCV3_SERVER=https://skobk.in
|
||||||
|
SYNCV3_DB='user=matrix-ss dbname=matrix-ss sslmode=disable host=host.docker.internal password=database_password'
|
||||||
|
SYNCV3_SECRET=very_long_and_random_secret
|
||||||
|
SS_BIND_ADDR=0.0.0.0
|
||||||
|
SS_BIND_PORT=8889
|
||||||
|
|
||||||
|
SS_EXT_ADR=127.0.0.1
|
||||||
|
SS_EXT_PORT=8889
|
||||||
|
|
||||||
LOG_MAX_SIZE=5m
|
LOG_MAX_SIZE=5m
|
||||||
LOG_MAX_FILE=5
|
LOG_MAX_FILE=5
|
||||||
|
|
|
@ -29,6 +29,28 @@ services:
|
||||||
max-size: "${LOG_MAX_SIZE:-5m}"
|
max-size: "${LOG_MAX_SIZE:-5m}"
|
||||||
max-file: "${LOG_MAX_FILE:-5}"
|
max-file: "${LOG_MAX_FILE:-5}"
|
||||||
|
|
||||||
|
sliding-sync:
|
||||||
|
# https://github.com/matrix-org/sliding-sync
|
||||||
|
image: "ghcr.io/matrix-org/sliding-sync:${SS_PROXY_IMAGE_TAG:-latest}"
|
||||||
|
depends_on:
|
||||||
|
- synapse
|
||||||
|
extra_hosts:
|
||||||
|
- 'host.docker.internal:host-gateway'
|
||||||
|
ports:
|
||||||
|
- "${SS_EXT_ADR:-127.0.0.1}:${SS_EXT_PORT:-8889}:${SS_BIND_PORT:-8889}"
|
||||||
|
environment:
|
||||||
|
# https://github.com/matrix-org/sliding-sync?tab=readme-ov-file#setup
|
||||||
|
- "SYNCV3_SERVER=${SYNCV3_SERVER}"
|
||||||
|
- "SYNCV3_DB=${SYNCV3_DB}"
|
||||||
|
- "SYNCV3_SECRET=${SYNCV3_SECRET}"
|
||||||
|
- "SYNCV3_BINDADDR=${SS_BIND_ADDR:-0.0.0.0}:${SS_BIND_PORT:-8889}"
|
||||||
|
restart: unless-stopped
|
||||||
|
logging:
|
||||||
|
driver: "json-file"
|
||||||
|
options:
|
||||||
|
max-size: "${LOG_MAX_SIZE:-5m}"
|
||||||
|
max-file: "${LOG_MAX_FILE:-5}"
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
matrix:
|
matrix:
|
||||||
external: true
|
external: true
|
||||||
|
|
Loading…
Reference in a new issue