2017-09-28 06:12:47 -04:00
|
|
|
|
2019-10-18 05:23:33 -04:00
|
|
|
# Synapse Docker
|
2018-05-16 05:10:31 -04:00
|
|
|
|
2019-10-18 05:23:33 -04:00
|
|
|
### Configuration
|
2018-02-08 15:55:35 -05:00
|
|
|
|
|
|
|
A sample ``docker-compose.yml`` is provided, including example labels for
|
2018-05-16 05:10:31 -04:00
|
|
|
reverse proxying and other artifacts. The docker-compose file is an example,
|
|
|
|
please comment/uncomment sections that are not suitable for your usecase.
|
2018-02-08 15:55:35 -05:00
|
|
|
|
|
|
|
Specify a ``SYNAPSE_CONFIG_PATH``, preferably to a persistent path,
|
2019-10-18 05:23:33 -04:00
|
|
|
to use manual configuration.
|
|
|
|
|
|
|
|
To generate a fresh `homeserver.yaml`, you can use the `generate` command.
|
|
|
|
(See the [documentation](../../docker/README.md#generating-a-configuration-file)
|
|
|
|
for more information.) You will need to specify appropriate values for at least the
|
|
|
|
`SYNAPSE_SERVER_NAME` and `SYNAPSE_REPORT_STATS` environment variables. For example:
|
2017-09-28 06:12:47 -04:00
|
|
|
|
|
|
|
```
|
2019-10-18 05:23:33 -04:00
|
|
|
docker-compose run --rm -e SYNAPSE_SERVER_NAME=my.matrix.host -e SYNAPSE_REPORT_STATS=yes synapse generate
|
2017-09-28 06:12:47 -04:00
|
|
|
```
|
|
|
|
|
2019-10-18 05:23:33 -04:00
|
|
|
(This will also generate necessary signing keys.)
|
|
|
|
|
2018-02-08 15:55:35 -05:00
|
|
|
Then, customize your configuration and run the server:
|
|
|
|
|
|
|
|
```
|
|
|
|
docker-compose up -d
|
|
|
|
```
|
|
|
|
|
2018-05-21 09:45:33 -04:00
|
|
|
### More information
|
2018-02-08 14:53:12 -05:00
|
|
|
|
2018-08-03 04:15:19 -04:00
|
|
|
For more information on required environment variables and mounts, see the main docker documentation at [/docker/README.md](../../docker/README.md)
|