diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-05-12 12:05:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-12 12:05:55 +0100 |
commit | fc670f03a2ac13adc7e022bcb21b82ad874d6706 (patch) | |
tree | d844a59c9efb0867ad15d953d1dfcdc6d59e6fd0 /build/docker/README.md | |
parent | 0d1505a4c1ccca7c5cf4a64faf5d1044d8aa96f9 (diff) |
Separate sample configs for monolith and polylith (#2456)
* Update sample configs
* Update references
* Remove sections that are dead in the monolith sample
Diffstat (limited to 'build/docker/README.md')
-rw-r--r-- | build/docker/README.md | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/build/docker/README.md b/build/docker/README.md index 7425d96c..261519fd 100644 --- a/build/docker/README.md +++ b/build/docker/README.md @@ -27,8 +27,7 @@ There are three sample `docker-compose` files: The `docker-compose` files refer to the `/etc/dendrite` volume as where the runtime config should come from. The mounted folder must contain: -- `dendrite.yaml` configuration file (from the [Docker config folder](https://github.com/matrix-org/dendrite/tree/master/build/docker/config) - sample in the `build/docker/config` folder of this repository.) +- `dendrite.yaml` configuration file (based on one of the sample config files) - `matrix_key.pem` server key, as generated using `cmd/generate-keys` - `server.crt` certificate file - `server.key` private key file for the above certificate @@ -49,7 +48,7 @@ The key files will now exist in your current working directory, and can be mount ## Starting Dendrite as a monolith deployment -Create your config based on the [`dendrite.yaml`](https://github.com/matrix-org/dendrite/tree/master/build/docker/config) configuration file in the `build/docker/config` folder of this repository. +Create your config based on the [`dendrite-sample.monolith.yaml`](https://github.com/matrix-org/dendrite/blob/main/dendrite-sample.monolith.yaml) sample configuration file. Then start the deployment: @@ -59,7 +58,7 @@ docker-compose -f docker-compose.monolith.yml up ## Starting Dendrite as a polylith deployment -Create your config based on the [`dendrite-config.yaml`](https://github.com/matrix-org/dendrite/tree/master/build/docker/config) configuration file in the `build/docker/config` folder of this repository. +Create your config based on the [`dendrite-sample.polylith.yaml`](https://github.com/matrix-org/dendrite/blob/main/dendrite-sample.polylith.yaml) sample configuration file. Then start the deployment: |