mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-05 15:39:26 +01:00
39c7a8915c
* Initial work oon multipersonality binary * Remove old binaries * Monolith and polylith binaries * Better logging * dendrite-poly-multi * Fix path * Copyright notices etc * Tweaks * Update Docker, INSTALL.md * Take first argument if flags package doesn't find any args * Postgres 9.6 or later, fix some more Docker stuff * Don't create unnecessary e2ekey DB * Run go mod tidy
8 lines
No EOL
159 B
Bash
Executable file
8 lines
No EOL
159 B
Bash
Executable file
#!/bin/bash
|
|
|
|
TAG=${1:-latest}
|
|
|
|
echo "Pulling tag '${TAG}'"
|
|
|
|
docker pull matrixdotorg/dendrite-monolith:${TAG}
|
|
docker pull matrixdotorg/dendrite-polylith:${TAG} |