26 lines
837 B
YAML
26 lines
837 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: synapse_server_1
|
|
APP_PORT: $APP_SYNAPSE_PORT
|
|
PROXY_AUTH_ADD: "false"
|
|
|
|
server:
|
|
image: matrixdotorg/synapse:v1.151.0@sha256:184dc8757daef019b511e7f96fc6e5edfb880fd074d8cf702c7e3aa899d188c8
|
|
restart: on-failure
|
|
stop_grace_period: 1m
|
|
entrypoint: "bash"
|
|
command: "-c './start.py generate && ./start.py migrate_config && echo -e \"\nenable_registration_without_verification: true\" >> /data/homeserver.yaml && exec ./start.py'"
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/synapse:/data
|
|
environment:
|
|
UID: "1000"
|
|
GID: "1000"
|
|
SYNAPSE_HTTP_PORT: "${APP_SYNAPSE_PORT}"
|
|
SYNAPSE_SERVER_NAME: "${APP_HIDDEN_SERVICE}"
|
|
SYNAPSE_REPORT_STATS: "yes"
|
|
SYNAPSE_ENABLE_REGISTRATION: "yes"
|
|
SYNAPSE_NO_TLS: "yes"
|