2022-11-01 20:33:33 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
echo "===== Cloning Docker Images ====="
|
|
|
|
cd images/
|
|
|
|
git clone https://github.com/matrix-org/mjolnir
|
2022-11-03 14:24:01 -04:00
|
|
|
git clone https://github.com/matrix-org/pantalaimon
|
2023-01-01 19:17:05 -05:00
|
|
|
git clone https://git.anonymousland.org/anonymousland/synapse-worker-docker
|
|
|
|
git clone https://git.anonyomusland.org/anonymousland/synapse-docker
|
|
|
|
git clone https://git.anonymousland.org/anonymousland/synapse-captcha
|
2022-11-03 14:24:01 -04:00
|
|
|
git clone https://github.com/turt2live/matrix-dimension
|
2022-11-01 20:33:33 -04:00
|
|
|
|
|
|
|
echo "===== Building Docker Images ====="
|
|
|
|
bash build.sh
|
|
|
|
|
|
|
|
echo "===== Building Tools ====="
|
2022-11-01 20:52:11 -04:00
|
|
|
cd ../
|
2022-11-01 20:54:55 -04:00
|
|
|
mkdir tools
|
2022-11-01 20:52:11 -04:00
|
|
|
cd tools/
|
2022-11-01 20:33:33 -04:00
|
|
|
|
|
|
|
git clone https://github.com/matrix-org/rust-synapse-compress-state
|
2022-11-01 20:50:49 -04:00
|
|
|
cd rust-synapse-compress-state/synapse-auto-compressor/
|
2022-11-01 20:33:33 -04:00
|
|
|
cargo build
|
|
|
|
mv ../target/debug/synapse_auto_compressor ../../synapse_auto_compressor
|
|
|
|
|
2022-11-01 20:50:49 -04:00
|
|
|
cd ../
|
2022-11-01 20:41:46 -04:00
|
|
|
cd ../
|
2022-11-01 20:33:33 -04:00
|
|
|
|
|
|
|
git clone https://github.com/joj0/synadm
|
|
|
|
cd synadm
|
|
|
|
sudo python3 setup.py install
|
|
|
|
|
2022-11-01 20:41:46 -04:00
|
|
|
cd ../
|
2022-11-01 20:33:33 -04:00
|
|
|
|
|
|
|
echo "===== Pulling Docker Images ====="
|
|
|
|
docker-compose pull
|
|
|
|
|
|
|
|
echo "===== Complete ====="
|