mirror of
https://github.com/matrix-org/dendrite
synced 2024-10-31 21:19:04 +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 "Pushing tag '${TAG}'"
|
|
|
|
docker push matrixdotorg/dendrite-monolith:${TAG}
|
|
docker push matrixdotorg/dendrite-polylith:${TAG} |