mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-01 01:29:28 +01:00
162e7300d5
Signed-off-by: TheOneWithTheBraid <the-one@with-the-braid.cf>
15 lines
550 B
Bash
Executable File
15 lines
550 B
Bash
Executable File
#!/usr/bin/env bash
|
|
chown -R 991:991 integration_test/dendrite
|
|
|
|
# creating integration test SSL certificates
|
|
docker run --rm --entrypoint="" \
|
|
--volume="$(pwd)/integration_test/dendrite/data":/mnt:rw \
|
|
matrixdotorg/dendrite-monolith:latest \
|
|
/usr/bin/generate-keys \
|
|
-private-key /mnt/matrix_key.pem \
|
|
-tls-cert /mnt/server.crt \
|
|
-tls-key /mnt/server.key
|
|
|
|
docker run -d --volume="$(pwd)/integration_test/dendrite/data":/etc/dendrite:rw \
|
|
--name dendrite -p 80:8008 matrixdotorg/dendrite-monolith:latest -really-enable-open-registration
|