This will build a Docker Image for [Synapse] (https://matrix.oprg/docs/projects/server/synapse), A Matrix.org Homeserver
- About
- Maintainer
- Table of Contents
- Installation
- Configuration
- Maintenance
- Support
- License
- References
Clone this repository and build the image with docker build -t (imagename) .
Builds of the image are available on Docker Hub
docker pull docker.io/tiredofdit/synapse:(imagetag)
Builds of the image are also available on the Github Container Registry
docker pull ghcr.io/tiredofit/docker-synapse:(imagetag)
The following image tags are available along with their tagged release based on what's written in the Changelog:
Container OS | Tag |
---|---|
Alpine | :latest |
Images are built primarily for amd64
architecture, and may also include builds for arm/v7
, arm64
and others. These variants are all unsupported. Consider sponsoring my work so that I can work with various hardware. To see if this image supports multiple architecures, type docker manifest (image):(tag)
-
The quickest way to get started is using docker-compose. See the examples folder for a working compose.yml that can be modified for development or production use.
-
Set various environment variables to understand the capabilities of this image.
-
Map persistent storage for access to configuration and data files for backup.
The following directories are used for configuration and can be mapped for persistent storage.
Directory | Description |
---|---|
/data/certs/ |
Signing Keys |
/data/config |
Configuration Files |
/data/media |
Media / Assets |
/data/templates |
Email Templates |
/data/uploads |
Uploaded Assets |
/logs |
Log files |
This image relies on an Alpine Linux base image that relies on an init system for added capabilities. Outgoing SMTP capabilities are handlded via msmtp
. Individual container performance monitoring is performed by zabbix-agent. Additional tools include: bash
,curl
,less
,logrotate
,nano
,vim
.
Be sure to view the following repositories to understand all the customizable options:
Image | Description |
---|---|
OS Base | Customized Image based on Alpine Linux |
Variable | Description | Default |
---|---|---|
CERT_PATH |
Signing Key Path | ${DATA_PATH}/certs/ |
CONFIG_FILE |
Configuration File | homeserver.yaml |
CONFIG_PATH |
Configuration File path | ${DATA_PATH}/config/ |
DATA_PATH |
Data Path | /data/ |
LOG_FORMAT |
What format of logs STANDARD or JSON |
STANDARD |
LOG_FORMAT_CONSOLE |
What format of logs STANDARD or JSON for console |
${LOG_FORMAT} |
LOG_FORMAT_FILE |
What format of logs STANDARD or JSON for file |
${LOG_FORMAT} |
LOG_PATH |
Log file path | /logs/ |
LOG_TYPE |
How to display logs FILE ,CONSOLE or BOTH |
FILE |
MEDIA_PATH |
Media / Assets path | ${DATA_PATH}/media |
SETUP_MODE |
Update configuration based on environment variables | AUTO |
TEMPLATE_PATH |
Email Templates | ${DATA_PATH}/templates |
UPLOAD_PATH |
Uploads Path | ${DATA_PATH}/uploads |
Variable | Description | Default | _FILE |
---|---|---|---|
CREATE_ADMIN_USER |
Create Admin User on Startup | TRUE |
|
ADMIN_PASS |
Admin Password | tiredofit |
x |
ADMIN_USER |
Admin User Name | synapse |
x |
CONTACT_ADMIN_EMAIL |
Admin Contact Email | admin@example.com |
|
ENABLE_HTTP |
Enable HTTP Listeners | TRUE |
|
ENABLE_METRICS |
Enable Metrics Listeners | TRUE |
|
HTTP_ENABLE_COMPRESSION |
Enable Compression | TRUE |
|
HTTP_ENABLE_TLS |
Enable TLS Services | FALSE |
|
HTTP_ENABLE_X_FORWARDED |
TRUE |
||
HTTP_LISTEN_IP |
HTTP Listen Port | 0.0.0.0 |
|
HTTP_LISTEN_PORT |
HTTP Listen Port | 8008 |
|
HTTP_MODE |
What resources to offer | client,federation |
|
LOG_BUFFER |
10 |
||
LOG_FILE |
Log File | homeserver.log |
|
LOG_INTERVAL_FLUSH_FORCE |
5 |
||
LOG_LEVEL_FLUSH |
30 |
||
LOG_LEVEL_LDAP_AUTH_PROVIDER |
Log LDAP Auth Provider Level | ${LOG_LEVEL} |
|
LOG_LEVEL_LDAP |
Log LDAP Level | ${LOG_LEVEL} |
|
LOG_LEVEL_SHARED_SECRET_AUTHENTICATOR |
Log Shared Secret Authenticator Level | ${LOG_LEVEL} |
|
LOG_LEVEL_SQL |
Log SQL Level | ${LOG_LEVEL} |
|
LOG_LEVEL |
Log Level | INFO |
|
METRICS_LISTEN_IP |
Metrics Listen IP | 127.0.0.1 |
|
METRICS_LISTEN_PORT |
HTTP Listen Port | 8009 |
|
SECRET_FORM |
Form secret | (autogenerated) | x |
SECRET_MACAROON |
Macaroon secret | (autogenerated) | x |
SECRET_REGISTRATION |
Registration secret | (autogenerated) | x |
SERVER_NAME |
Server name eg example.com |
||
SERVER_URL |
Server URL eg https://example.com |
https://${SERVER_NAME} |
Variable | Description | Default | _FILE |
---|---|---|---|
DB_SQLITE_NAME |
(sqlite) Database name | homeserver.db |
|
DB_SQLITE_PATH |
(sqlite) Database Path | ${DATA_PATH}/sqlite/ |
|
DB_POOL_MAX |
(postgres) | 10 |
|
DB_POOL_MIN |
(postgres) | 5 |
|
DB_TRANSACTION_LIMIT |
(postgres) | 10000 |
|
DB_HOST |
(postgres) Postgresql Hostname | x | |
DB_KEEP_ALIVE_INTERVAL_MS |
(postgres) Keep alive in milliseconds | 30000 |
|
DB_NAME |
(postgres) Postgresql Name | x | |
DB_PASS |
(postgres) Postgresql Password | x | |
DB_PORT |
(postgres) Postgresql Port | 5432 |
x |
DB_TYPE |
Database type postgres or sqlite |
POSTGRES |
|
DB_USER |
(postgres) Postgresql User | x |
Variable | Description | Default |
---|---|---|
ENABLE_MEDIA_REPO |
Enable inbuilt Media Repository | TRUE |
MEDIA_DYNAMIC_THUMBNAILS |
Enable Dynamic Thumbnails | TRUE |
MEDIA_MAX_UPLOAD_SIZE |
Maximum upload size | 50M |
MEDIA_MAX_IMAGE_PIXELS |
Max image pixels | 32M |
MEDIA_MAX_SPIDER_SIZE |
Maximum Spider Size | 10m |
MEDIA_RETENTION_LOCAL |
Retain Local media for how long | 90d |
MEDIA_RETENTION_REMOTE |
Retain remote media for how long | 14d |
Port | Protocol | Description |
---|---|---|
8008 |
tcp |
Synapse Homeserver |
For debugging and maintenance purposes you may want access the containers shell.
docker exec -it (whatever your container name is) bash
These images were built to serve a specific need in a production environment and gradually have had more functionality added based on requests from the community.
- The Discussions board is a great place for working with the community on tips and tricks of using this image.
- Consider sponsoring me for personalized support
- Please, submit a Bug Report if something isn't working as expected. I'll do my best to issue a fix in short order.
- Feel free to submit a feature request, however there is no guarantee that it will be added, or at what timeline.
- Consider sponsoring me regarding development of features.
- Best effort to track upstream changes, More priority if I am actively using the image in a production environment.
- Consider sponsoring me for up to date releases.
MIT. See LICENSE for more details.