2018-05-21 09:45:33 -04:00
|
|
|
# Synapse Docker
|
|
|
|
|
2019-02-05 08:42:21 -05:00
|
|
|
This Docker image will run Synapse as a single process. By default it uses a
|
|
|
|
sqlite database; for production use you should connect it to a separate
|
|
|
|
postgres database.
|
2018-05-21 09:45:33 -04:00
|
|
|
|
2019-02-05 08:42:21 -05:00
|
|
|
The image also does *not* provide a TURN server.
|
2018-05-21 09:45:33 -04:00
|
|
|
|
|
|
|
## Volumes
|
|
|
|
|
2019-06-27 08:49:48 -04:00
|
|
|
By default, the image expects a single volume, located at ``/data``, that will hold:
|
2018-05-21 09:45:33 -04:00
|
|
|
|
2019-06-27 08:49:48 -04:00
|
|
|
* configuration files;
|
2018-05-21 09:45:33 -04:00
|
|
|
* temporary files during uploads;
|
|
|
|
* uploaded media and thumbnails;
|
|
|
|
* the SQLite database if you do not configure postgres;
|
|
|
|
* the appservices configuration.
|
|
|
|
|
|
|
|
You are free to use separate volumes depending on storage endpoints at your
|
2019-08-28 04:34:49 -04:00
|
|
|
disposal. For instance, ``/data/media`` could be stored on a large but low
|
2018-05-21 09:45:33 -04:00
|
|
|
performance hdd storage while other files could be stored on high performance
|
|
|
|
endpoints.
|
|
|
|
|
|
|
|
In order to setup an application service, simply create an ``appservices``
|
|
|
|
directory in the data volume and write the application service Yaml
|
|
|
|
configuration file there. Multiple application services are supported.
|
|
|
|
|
2019-06-27 08:49:48 -04:00
|
|
|
## Generating a configuration file
|
|
|
|
|
2019-08-28 04:34:49 -04:00
|
|
|
The first step is to generate a valid config file. To do this, you can run the
|
|
|
|
image with the `generate` command line option.
|
2019-06-27 08:49:48 -04:00
|
|
|
|
|
|
|
You will need to specify values for the `SYNAPSE_SERVER_NAME` and
|
|
|
|
`SYNAPSE_REPORT_STATS` environment variable, and mount a docker volume to store
|
|
|
|
the configuration on. For example:
|
2019-03-07 02:35:14 -05:00
|
|
|
|
|
|
|
```
|
2019-05-22 07:53:16 -04:00
|
|
|
docker run -it --rm \
|
2019-03-07 02:35:14 -05:00
|
|
|
--mount type=volume,src=synapse-data,dst=/data \
|
|
|
|
-e SYNAPSE_SERVER_NAME=my.matrix.host \
|
|
|
|
-e SYNAPSE_REPORT_STATS=yes \
|
|
|
|
matrixdotorg/synapse:latest generate
|
|
|
|
```
|
|
|
|
|
2019-06-27 08:49:48 -04:00
|
|
|
For information on picking a suitable server name, see
|
|
|
|
https://github.com/matrix-org/synapse/blob/master/INSTALL.md.
|
2019-03-07 02:35:14 -05:00
|
|
|
|
2019-06-27 08:49:48 -04:00
|
|
|
The above command will generate a `homeserver.yaml` in (typically)
|
|
|
|
`/var/lib/docker/volumes/synapse-data/_data`. You should check this file, and
|
|
|
|
customise it to your needs.
|
2019-06-25 10:09:22 -04:00
|
|
|
|
2019-06-27 08:49:48 -04:00
|
|
|
The following environment variables are supported in `generate` mode:
|
2019-06-25 10:09:22 -04:00
|
|
|
|
|
|
|
* `SYNAPSE_SERVER_NAME` (mandatory): the server public hostname.
|
|
|
|
* `SYNAPSE_REPORT_STATS` (mandatory, `yes` or `no`): whether to enable
|
|
|
|
anonymous statistics reporting.
|
2019-06-25 13:21:32 -04:00
|
|
|
* `SYNAPSE_CONFIG_DIR`: where additional config files (such as the log config
|
|
|
|
and event signing key) will be stored. Defaults to `/data`.
|
2019-06-27 08:49:48 -04:00
|
|
|
* `SYNAPSE_CONFIG_PATH`: path to the file to be generated. Defaults to
|
|
|
|
`<SYNAPSE_CONFIG_DIR>/homeserver.yaml`.
|
2019-06-25 10:18:30 -04:00
|
|
|
* `SYNAPSE_DATA_DIR`: where the generated config will put persistent data
|
2019-08-28 04:34:49 -04:00
|
|
|
such as the database and media store. Defaults to `/data`.
|
2019-06-25 10:18:30 -04:00
|
|
|
* `UID`, `GID`: the user id and group id to use for creating the data
|
|
|
|
directories. Defaults to `991`, `991`.
|
2019-06-27 08:49:48 -04:00
|
|
|
|
|
|
|
## Running synapse
|
|
|
|
|
|
|
|
Once you have a valid configuration file, you can start synapse as follows:
|
|
|
|
|
|
|
|
```
|
|
|
|
docker run -d --name synapse \
|
|
|
|
--mount type=volume,src=synapse-data,dst=/data \
|
|
|
|
-p 8008:8008 \
|
|
|
|
matrixdotorg/synapse:latest
|
|
|
|
```
|
|
|
|
|
|
|
|
You can then check that it has started correctly with:
|
|
|
|
|
|
|
|
```
|
|
|
|
docker logs synapse
|
|
|
|
```
|
|
|
|
|
|
|
|
If all is well, you should now be able to connect to http://localhost:8008 and
|
|
|
|
see a confirmation message.
|
|
|
|
|
|
|
|
The following environment variables are supported in run mode:
|
|
|
|
|
|
|
|
* `SYNAPSE_CONFIG_DIR`: where additional config files are stored. Defaults to
|
|
|
|
`/data`.
|
|
|
|
* `SYNAPSE_CONFIG_PATH`: path to the config file. Defaults to
|
|
|
|
`<SYNAPSE_CONFIG_DIR>/homeserver.yaml`.
|
2019-09-19 17:29:47 -04:00
|
|
|
* `SYNAPSE_WORKER`: module to execute, used when running synapse with workers.
|
|
|
|
Defaults to `synapse.app.homeserver`, which is suitable for non-worker mode.
|
2019-06-27 08:49:48 -04:00
|
|
|
* `UID`, `GID`: the user and group id to run Synapse as. Defaults to `991`, `991`.
|
2019-07-02 05:31:06 -04:00
|
|
|
* `TZ`: the [timezone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) the container will run with. Defaults to `UTC`.
|
2019-06-27 08:49:48 -04:00
|
|
|
|
|
|
|
## TLS support
|
|
|
|
|
|
|
|
The default configuration exposes a single HTTP port: http://localhost:8008. It
|
|
|
|
is suitable for local testing, but for any practical use, you will either need
|
|
|
|
to use a reverse proxy, or configure Synapse to expose an HTTPS port.
|
|
|
|
|
|
|
|
For documentation on using a reverse proxy, see
|
|
|
|
https://github.com/matrix-org/synapse/blob/master/docs/reverse_proxy.rst.
|
|
|
|
|
|
|
|
For more information on enabling TLS support in synapse itself, see
|
|
|
|
https://github.com/matrix-org/synapse/blob/master/INSTALL.md#tls-certificates. Of
|
|
|
|
course, you will need to expose the TLS port from the container with a `-p`
|
|
|
|
argument to `docker run`.
|
|
|
|
|
|
|
|
## Legacy dynamic configuration file support
|
|
|
|
|
|
|
|
For backwards-compatibility only, the docker image supports creating a dynamic
|
|
|
|
configuration file based on environment variables. This is now deprecated, but
|
|
|
|
is enabled when the `SYNAPSE_SERVER_NAME` variable is set (and `generate` is
|
|
|
|
not given).
|
2019-06-27 08:52:40 -04:00
|
|
|
|
|
|
|
To migrate from a dynamic configuration file to a static one, run the docker
|
|
|
|
container once with the environment variables set, and `migrate_config`
|
2019-08-28 04:34:49 -04:00
|
|
|
command line option. For example:
|
2019-06-27 08:52:40 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
docker run -it --rm \
|
|
|
|
--mount type=volume,src=synapse-data,dst=/data \
|
|
|
|
-e SYNAPSE_SERVER_NAME=my.matrix.host \
|
|
|
|
-e SYNAPSE_REPORT_STATS=yes \
|
|
|
|
matrixdotorg/synapse:latest migrate_config
|
|
|
|
```
|
|
|
|
|
|
|
|
This will generate the same configuration file as the legacy mode used, but
|
|
|
|
will store it in `/data/homeserver.yaml` instead of a temporary location. You
|
|
|
|
can then use it as shown above at [Running synapse](#running-synapse).
|