2020-05-21 13:02:28 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-10-20 11:34:22 +01:00
|
|
|
TAG=${1:-latest}
|
2020-06-05 19:00:30 +01:00
|
|
|
|
2020-10-20 11:34:22 +01:00
|
|
|
echo "Pushing tag '${TAG}'"
|
|
|
|
|
|
|
|
docker push matrixdotorg/dendrite-monolith:${TAG}
|
|
|
|
|
|
|
|
docker push matrixdotorg/dendrite-appservice:${TAG}
|
|
|
|
docker push matrixdotorg/dendrite-clientapi:${TAG}
|
|
|
|
docker push matrixdotorg/dendrite-eduserver:${TAG}
|
|
|
|
docker push matrixdotorg/dendrite-federationapi:${TAG}
|
|
|
|
docker push matrixdotorg/dendrite-federationsender:${TAG}
|
|
|
|
docker push matrixdotorg/dendrite-keyserver:${TAG}
|
|
|
|
docker push matrixdotorg/dendrite-mediaapi:${TAG}
|
|
|
|
docker push matrixdotorg/dendrite-roomserver:${TAG}
|
|
|
|
docker push matrixdotorg/dendrite-syncapi:${TAG}
|
|
|
|
docker push matrixdotorg/dendrite-signingkeyserver:${TAG}
|
|
|
|
docker push matrixdotorg/dendrite-userapi:${TAG}
|