mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-09 22:42:58 +00:00
92982a402f
* Separate Docker images, rather than tags * Allow specifying tag to build/push/pull * Include goose in Docker builds
20 lines
687 B
Bash
Executable File
20 lines
687 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TAG=${1:-latest}
|
|
|
|
echo "Pulling tag '${TAG}'"
|
|
|
|
docker pull matrixdotorg/dendrite-monolith:${TAG}
|
|
|
|
docker pull matrixdotorg/dendrite-appservice:${TAG}
|
|
docker pull matrixdotorg/dendrite-clientapi:${TAG}
|
|
docker pull matrixdotorg/dendrite-eduserver:${TAG}
|
|
docker pull matrixdotorg/dendrite-federationapi:${TAG}
|
|
docker pull matrixdotorg/dendrite-federationsender:${TAG}
|
|
docker pull matrixdotorg/dendrite-keyserver:${TAG}
|
|
docker pull matrixdotorg/dendrite-mediaapi:${TAG}
|
|
docker pull matrixdotorg/dendrite-roomserver:${TAG}
|
|
docker pull matrixdotorg/dendrite-syncapi:${TAG}
|
|
docker pull matrixdotorg/dendrite-signingkeyserver:${TAG}
|
|
docker pull matrixdotorg/dendrite-userapi:${TAG}
|