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
2021-04-14 07:06:19 -04:00
postgres database. The image also does *not* provide a TURN server.
2018-05-21 09:45:33 -04:00
2021-04-14 07:06:19 -04:00
This image should work on all platforms that are supported by Docker upstream.
Note that Docker's WS1-backend Linux Containers on Windows
platform is [experimental ](https://github.com/docker/for-win/issues/6470 ) and
is not supported by this image.
2018-05-21 09:45:33 -04:00
## Volumes
2021-04-14 08:54:49 -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
* 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
2021-04-14 08:54: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.
2021-04-14 08:54:49 -04:00
In order to setup an application service, simply create an `appservices`
2018-05-21 09:45:33 -04:00
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
2021-07-08 10:46:13 -04:00
https://matrix-org.github.io/synapse/latest/setup/installation.html.
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.
2021-04-14 08:54:49 -04:00
* `SYNAPSE_HTTP_PORT` : the port Synapse should listen on for http traffic.
Defaults to `8008` .
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
2021-11-01 09:55:30 -04:00
directories. If unset, and no user is set via `docker run --user` , defaults
to `991` , `991` .
2022-07-05 05:46:20 -04:00
* `SYNAPSE_LOG_LEVEL` : the log level to use (one of `DEBUG` , `INFO` , `WARNING` or `ERROR` ).
Defaults to `INFO` .
* `SYNAPSE_LOG_SENSITIVE` : if set and the log level is set to `DEBUG` , Synapse
will log sensitive information such as access tokens.
This should not be needed unless you are a developer attempting to debug something
particularly tricky.
2019-06-27 08:49:48 -04:00
2022-01-05 05:50:28 -05:00
## Postgres
By default the config will use SQLite. See the [docs on using Postgres ](https://github.com/matrix-org/synapse/blob/develop/docs/postgres.md ) for more info on how to use Postgres. Until this section is improved [this issue ](https://github.com/matrix-org/synapse/issues/8304 ) may provide useful information.
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
```
2021-04-14 08:54:49 -04:00
(assuming 8008 is the port Synapse is configured to listen on for http traffic.)
2019-06-27 08:49:48 -04:00
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.
2020-10-11 15:51:11 -04:00
The following environment variables are supported in `run` mode:
2019-06-27 08:49:48 -04:00
* `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.
2021-11-01 09:55:30 -04:00
* `UID` , `GID` : the user and group id to run Synapse as. If unset, and no user
is set via `docker run --user` , defaults to `991` , `991` . Note that this user
must have permission to read the config files, and write to the data directories.
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
2020-10-11 15:51:11 -04:00
For more complex setups (e.g. for workers) you can also pass your args directly to synapse using `run` mode. For example like this:
```
docker run -d --name synapse \
--mount type=volume,src=synapse-data,dst=/data \
-p 8008:8008 \
matrixdotorg/synapse:latest run \
-m synapse.app.generic_worker \
--config-path=/data/homeserver.yaml \
--config-path=/data/generic_worker.yaml
```
If you do not provide `-m` , the value of the `SYNAPSE_WORKER` environment variable is used. If you do not provide at least one `--config-path` or `-c` , the value of the `SYNAPSE_CONFIG_PATH` environment variable is used instead.
2020-07-17 13:25:48 -04:00
## Generating an (admin) user
After synapse is running, you may wish to create a user via `register_new_matrix_user` .
This requires a `registration_shared_secret` to be set in your config file. Synapse
must be restarted to pick up this change.
You can then call the script:
```
docker exec -it synapse register_new_matrix_user http://localhost:8008 -c /data/homeserver.yaml --help
```
Remember to remove the `registration_shared_secret` and restart if you no-longer need it.
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
2019-10-28 11:39:57 -04:00
https://github.com/matrix-org/synapse/blob/master/docs/reverse_proxy.md.
2019-06-27 08:49:48 -04:00
For more information on enabling TLS support in synapse itself, see
2021-07-08 10:46:13 -04:00
https://matrix-org.github.io/synapse/latest/setup/installation.html#tls-certificates. Of
2019-06-27 08:49:48 -04:00
course, you will need to expose the TLS port from the container with a `-p`
argument to `docker run` .
## Legacy dynamic configuration file support
2020-02-18 06:41:53 -05:00
The docker image used to support creating a dynamic configuration file based
on environment variables. This is no longer supported, and an error will be
raised if you try to run synapse without a config file.
2019-06-27 08:52:40 -04:00
2020-02-18 06:41:53 -05:00
It is, however, possible to generate a static configuration file based on
the environment variables that were previously used. To do this, run the docker
2019-06-27 08:52:40 -04:00
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
```
2020-02-18 06:41:53 -05:00
This will generate the same configuration file as the legacy mode used, and
will store it in `/data/homeserver.yaml` . You can then use it as shown above at
[Running synapse ](#running-synapse ).
Note that the defaults used in this configuration file may be different to
those when generating a new config file with `generate` : for example, TLS is
enabled by default in this mode. You are encouraged to inspect the generated
configuration file and edit it to ensure it meets your needs.
2019-11-22 14:54:05 -05:00
## Building the image
If you need to build the image from a Synapse checkout, use the following `docker
build` command from the repo's root:
2020-02-18 06:41:53 -05:00
2019-11-22 14:54:05 -05:00
```
2022-08-12 09:25:47 -04:00
DOCKER_BUILDKIT=1 docker build -t matrixdotorg/synapse -f docker/Dockerfile .
2019-11-22 14:54:05 -05:00
```
You can choose to build a different docker image by changing the value of the `-f` flag to
point to another Dockerfile.
2020-08-24 13:15:18 -04:00
## Disabling the healthcheck
If you are using a non-standard port or tls inside docker you can disable the healthcheck
2021-11-01 09:55:30 -04:00
whilst running the above `docker run` commands.
2020-08-24 13:15:18 -04:00
```
--no-healthcheck
```
2021-05-05 11:33:04 -04:00
## Disabling the healthcheck in docker-compose file
If you wish to disable the healthcheck via docker-compose, append the following to your service configuration.
```
healthcheck:
disable: true
```
2020-08-24 13:15:18 -04:00
## Setting custom healthcheck on docker run
If you wish to point the healthcheck at a different port with docker command, add the following
```
--health-cmd 'curl -fSs http://localhost:1234/health'
```
## Setting the healthcheck in docker-compose file
You can add the following to set a custom healthcheck in a docker compose file.
2021-11-01 09:55:30 -04:00
You will need docker-compose version >2.1 for this to work.
2020-08-24 13:15:18 -04:00
```
healthcheck:
test: ["CMD", "curl", "-fSs", "http://localhost:8008/health"]
2021-05-05 11:33:04 -04:00
interval: 15s
timeout: 5s
2020-08-24 13:15:18 -04:00
retries: 3
2021-05-05 11:33:04 -04:00
start_period: 5s
2020-08-24 13:15:18 -04:00
```
2021-03-16 07:32:18 -04:00
## Using jemalloc
Jemalloc is embedded in the image and will be used instead of the default allocator.
2021-11-01 09:55:30 -04:00
You can read about jemalloc by reading the Synapse
2021-10-21 08:50:43 -04:00
[README ](https://github.com/matrix-org/synapse/blob/HEAD/README.rst#help-synapse-is-slow-and-eats-all-my-ram-cpu ).