From 6a2d90006b47831b756e7ddd866ae0f62ff07dbd Mon Sep 17 00:00:00 2001 From: Tupsi Date: Wed, 14 Jun 2023 15:22:38 +0200 Subject: [PATCH] Update configuring-playbook-synapse-s3-storage-provider.md added syntax to upload to wasabi (needs --endpoint param) --- ...figuring-playbook-synapse-s3-storage-provider.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/configuring-playbook-synapse-s3-storage-provider.md b/docs/configuring-playbook-synapse-s3-storage-provider.md index c704a747..62ace208 100644 --- a/docs/configuring-playbook-synapse-s3-storage-provider.md +++ b/docs/configuring-playbook-synapse-s3-storage-provider.md @@ -112,6 +112,19 @@ docker run -it --rm \ docker.io/amazon/aws-cli:2.9.16 \ -c 'aws s3 sync /work/. s3://$BUCKET/' ``` +#### Copying data to Wasabi + +To copy to Wasabi, start a container on the Matrix server like this: + +```sh +docker run -it --rm \ +-w /work \ +--env-file=/matrix/synapse/ext/s3-storage-provider/env \ +--mount type=bind,src=/matrix/synapse/storage/media-store,dst=/work,ro \ +--entrypoint=/bin/sh \ +docker.io/amazon/aws-cli:2.9.16 \ +-c 'aws s3 sync /work/. s3://$BUCKET/ --endpoint-url=$ENDPOINT' +``` #### Copying data to Backblaze B2